/*Copyright (C) 2008 Dream Craft Ltd.*/

try { 
	document.execCommand('BackgroundImageCache', false, true); 
} catch(e) {} 

var popUpWin=0;
function popUpWindow(URLStr){
	var left		= 0;
	var top			= 0;
	var width		= 730;
	var height	= 600;

if(popUpWin){
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
