function contact()
{	
	if(window.opener)
	{
		window.opener.location = "/contact/ContactRep.aspx";
		window.opener.focus();
	}
	else
	{
	   var int_windowLeft = (screen.width / 2) - (800 / 2);
	   var int_windowTop = (screen.height / 2) - (600 / 2);
	
	   var str_windowProperties = 'height=600,width=800,top=' + int_windowTop + ',left=' + int_windowLeft + ',scrollbars=1,resizable=1,menubar=1,toolbar=1,location=1,statusbar=1';
	
	   var obj_window = window.open("/contact/ContactRep.aspx", 'contact', str_windowProperties);
	   obj_window.focus();
	}
}