function popupImageWindow(width,height) {

	height = height + 20;
	width = width;

	window.open('','image_popup','width=' + width + ',height=' + height);
}
