
<!-- parsing: /we/teklynx//www//_contact_us/popup.js -->
  var popup=null;


  function popupwindow(which,width,height)
  {
	if(!width){
		width=400;
		height=460;
	}


	if(popup!=null)
		{
			popup.close();
		}


	popup=window.open(which,'popup_window','toolbar=no,location=no,directories=no,status=no,scrollbars,resizable=yes,copyhistory=no,width='+ width+ ',height='+height);
  }

 