function openImageWindow(url,x,y) {
	features = 'width=' + x + ',height=' + y ;
	if (y > 576) {
		features += ',scrollbars=yes' ;
	}
	window.open(url,'',features);
}
