function PopUp(strWindowId, strURL) 
{
	var strSettings = 'status=0, toolbar=0, location=0, menubar=0, directories=0, resizable=1, scrollbars=1, width=500, height=500';
	var objWindow = window.open(strURL, strWindowId, strSettings);
	return (objWindow);
}