function LaunchWin()
{
var win_height = 550;
var win_width = 650;
if(screen.width)
	{
	var screen_left = (screen.width - win_width)/2;
	var screen_top = (screen.height - win_height)/2;
	var open_window = eval("window.open('https://iomega.tms.hrdepartment.com','Jobs','height=" + win_height + ",width=" + win_width + ",top=" + screen_top + ",left=" + screen_left + ",scrollbars=yes,resizable=yes,menubar=no,status=no,toolbar=no')");
	}
else
	{
	if(document.layers)
		{
		var xLocat = (window.outerWidth - 311)/2;
		var yLocat = (window.outerHeight - 171)/2;
		var open_window = eval("window.open('https://iomega.tms.hrdepartment.com','Jobs','width=311,height=171,screenX=' + xLocat + ',screenY=' + yLocat + ',top=' + yLocat + ',left=' + xLocat + ')");
		}
	}
}