function winopen() {
// Here resize the PopUp
var popUpSizeX=468;
var popUpSizeY=160;

// Here move it to any poiny on screen
var popUpLocationX=80;
var popUpLocationY=02;

// URL of the popUp
var popUpURL="http://www.100000freecliparts.com/exit.htm";


splash = window.open("",'y','fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0');

splash.blur();
window.focus();

splash.resizeTo(popUpSizeX,popUpSizeY);
splash.moveTo(popUpLocationX,popUpLocationY);
splash.location=popUpURL;
splash.focus();
}
winopen();
