function	popupWindow(url)	{
	var	newwindow;

	newwindow = open(url,"PopupWindow","scrollbars=yes,location=yes,toolbar=no,directories=no,menubar=no,resizable=yes,status=no,width=400,height=400,top=10,left=10");
	newwindow.status = "close this window to see the homepage!"
	findPopup();
}

function	findPopup()	{
	findTheSucker:
	do {
		blur();	
		break findTheSucker;
		}	while (top.name != "PopupWindow");
}
