//pop up function for all pages except index.html

function contactPopup()
{
  var windowElements = "scrollbars=no,width=210,height=120,resizeable=no,titlebar=no,toolbar=no,screenX=570,screenY=200,left=570,top=100"; 
  var new_window     = window.open('../html/contactPopup.html', 'contactPopup', windowElements);
}


//pop up function for index.html 

function contactPopup2()
{
  var windowElements = "scrollbars=no,width=210,height=120,resizeable=no,titlebar=no,toolbar=no,screenX=570,screenY=200,left=570,top=100"; 
  var new_window     = window.open('html/contactPopup.html', 'contactPopup', windowElements);
}
