function popContact(subject)
{
    if(subject!=null)
    {
    window.open("Contact.aspx?subject="+subject,"Contact_Us", "toolbar=no,menubar=no,width=600,height=360,resizable=no")
    }else
    {
    window.open("Contact.aspx","Contact_Us", "toolbar=no,menubar=no,width=680,height=380,resizable=no")
    }
}

function popContact()
{
    window.open("Contact.aspx","Contact_Us", "toolbar=no,menubar=no,width=680,height=380,resizable=no")
}

function findPos(obj) 
{
	var curleft = curtop = 0;
	if (obj.offsetParent) 
	{
		do 
		{
			curleft += obj.offsetLeft;
			curtop += obj.offsetTop;
		} while (obj = obj.offsetParent);
	}
	return [curleft,curtop];
}  
function show( divid )
{
var div = document.getElementById(divid);
if(div.style.display=='none')
{
    div.style.display = 'block';
}else
{
    div.style.display='none'
}

}