function openImgFrame(imgId){
	/*var ImgWindow=window.open(
		'/Popup/Index.cfm?ImgId='+imgId,
		'_blank',
		'menubar=0,edge=Raised,center=Yes,help=No,resizable=No,status=No,width=330,height=325'
	)*/

	var ImgWindow= window.open (
		"/Popup/Index.cfm?ImgId="+imgId,
		"ImgWindow",
    "center=Yes,help=No,edge=Raised,menubar=No,toolbar=No,location=No,status=No,scrollbars=No,width=600,height=600,resizable=No"
   );

	ImgWindow.focus();
}
function resizeDocumentTo(setw,seth){
	if(setw!= GetWindowWidth() || seth != GetWindowHeight())
		return window.resizeTo(setw,seth),window.resizeTo(setw*2-GetWindowWidth(),seth*2-GetWindowHeight());
}
function GetWindowWidth(){ return (typeof window.innerWidth =='undefined')?document.body.clientWidth:window.innerWidth; }
function GetWindowHeight(){	return (typeof window.innerHeight =='undefined')?document.body.clientHeight:window.innerHeight;}
