// function regPage(sURL) 
// {
	// msgPopWindow = window.open('','popWindow','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=300,height=400');
	// msgPopWindow.location.href = sURL;
	// if (msgPopWindow.opener == null) msgPopWindow.opener = self;
// }

// open job popup window
function open_job_window(url)
{
	open_window(url, "JobPopup", 770, 520, "no", "yes");
	// open_window(url, "JobPopup", 770, 720, "yes", "yes");
}

function open_window(url, name, width, height, resize, scrollbars)
{ 
	var args = "menubar=no, status=yes, toolbar=no, resizable=" + resize + ", scrollbars=" + scrollbars;
	
	// centre window on screen
	if (width > 0) 
	{
		var left = (window.screen.availWidth / 2) - (width / 2);
		args += ", width = " + width;
		args += ", left = " + left;
	}
	
	if (height > 0) 
	{
		var top = (window.screen.availHeight / 2) - (height / 2);	
		args += ", height = " + height;
		args += ", top = " + top;		
	}
	
	newWindow = window.open(url, name, args);
		
	if (newWindow != null)
		newWindow.focus();
}
