﻿//popup function for the Contacts section

function popup(url,name,width,height) {
	var version, handle;
	handle = window.open(url,name, 'width=' + width + ',height=' + height + ',resizable=0,scrollbars=0');
	version = navigator.appVersion.substring(0,1);
	if (version!="2") handle.focus();
  }


function popup1(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=600,height=600');
return false;
}


