/**
 * open image in new window
 * @param string url
 */
function win(url, width, height) 
{
	
	var win = window.open(url,'','width='+width+',height='+height+',scrollbars=yes,location=no,resizable=yes');

	if (win) {
		return false;
	}
	return true;
}
