function pop_window(this_url)
{
	//window.location.reload(false);
	newwindow=window.open(this_url,'Image_Window','height=480,width=640');
	if (window.focus) {newwindow.focus()}

}
function pop_window_res(this_url)
{
	//window.location.reload(false);
	newwindow=window.open(this_url,'Image_Window','height=480,width=350,resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}

}
function pop_window_dyn(content,wd,ht)
{
	//window.location.reload(false)
	new_window=window.open('','NewWin', 'width='+wd+',height='+ht+',resizable=yes,scrollbars=yes');
	new_window.document.write(
	  '<html><head><title>Console</title><link href=\"webstyle.css\" rel=\"STYLESHEET\" type=\"text/css\" ></head>'
	   +'<body ><div style="background-color:white;text-align:left">'
	   +content
	   +'<div style="text-align:right">'
	   +'<input type="button" name="close_button" value="Close" onclick="window.close()">'
	   +'</div>'
	   +'</div></body></html>'
	);
	
	if (window.focus) new_window.focus();
}
function pop_window_gallery(strFilePath,strAltText,wd,ht)
{
  new_window=window.open('','NewWin', 'width='+wd+',height='+ht+',resizable=yes,scrollbars=no');
	new_window.document.write(
	  '<html><head><title>'+strAltText+'</title><link href=\"webstyle.css\" rel=\"STYLESHEET\" type=\"text/css\" ></head>'
	   +'<body ><div style="background-color:white;text-align:left">'
	   +'<center><img src="'+strFilePath+'" alt="'+strAltText+'" ><br>'
	   +'<input type="button" name="close_button" value="Close" onclick="window.close()"></center>'
	   +'</div></body></html>'
	);

	if (window.focus) new_window.focus();
	new_window.document.close();
}
