function winopen() {

	// Here resize the PopUp
	var popUpSizeX=220;
	var popUpSizeY=240;

	// Here move it to any poiny on screen
	var popUpLocationX=680;
	var popUpLocationY=50;

	// URL of the popUp
	var popUpURL = "http://www.linkspot.nl/view.php?id=" + id;
	//var popUpURL = "view.php?id=" + id;

	splashWin = window.open("",'LinkSpot','fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0');

	splashWin.blur();
	window.focus();

	splashWin.resizeTo(popUpSizeX,popUpSizeY);
	splashWin.moveTo(popUpLocationX,popUpLocationY);
	splashWin.location = popUpURL;
	splashWin.focus();

}

winopen();