function PopImgWindow ( url , idx )
{ 
	ImageWindow = window.open(url,"PopImgWin" + idx ,"toolbar=no,width=700,height=730;,location=no,directories=no,status=no,scrollbars=yes,resizable=no,menubar=no,alwaysRaised=yes");
	ImageWindow.focus();
	ImageWindow.moveTo(20,20);
}

function PopWindow ( url  )
{ 
	ImageWindow = window.open(url,"PopImgWin" ,"toolbar=no,width=630,height=500;,location=no,directories=no,status=no,scrollbars=yes,resizable,menubar=no,alwaysRaised=yes");
	ImageWindow.focus();
	ImageWindow.moveTo(20,20);
}

function PopWin( url  , width,  height )
{ 
	ImageWindow = window.open(url,"PopImgWin" ,"toolbar=no,width="+ width + ",height="+height+";,location=no,directories=no,status=no,scrollbars=yes,resizable=no,menubar=no,alwaysRaised=yes");
	ImageWindow.focus();
	//ImageWindow.moveTo(20,20);
}