
var ns4=document.layers
var ie4=document.all
var ns6=document.getElementById&&!document.all

var dragswitch=0
var nsx
var nsy
var nstemp

function open_frame(URL){
	var popUpSizeX=560;
	var popUpSizeY=650;

// Here move it to any poiny on screen
	var popUpLocationX=150;
	var popUpLocationY=50;

// URL of the popUp
	var popUpURL=URL;


	splashWin = window.open("",'print','fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0');
	splashWin.blur();
	window.focus();

	splashWin.resizeTo(popUpSizeX,popUpSizeY);
	splashWin.moveTo(popUpLocationX,popUpLocationY);
	splashWin.location=popUpURL;
	splashWin.focus();
}