function popupWindow(this_page,this_width,this_height) {
	productWindow = window.open(this_page,"popup","width="+this_width+",height="+ Math.min(this_height,screen.availHeight) +",resizable,scrollbars");
	productWindow.focus();
}