// JavaScript Document - popP.js - Jan.12.2008 - Wayne J. Froese for Valdor Technology International Inc.
// combined with popupSized.js July 7.2010
<!--
function popP(choice,extra){
	
	$chc = choice;
	var $chc_array = new Array;
	$chc_array[0] = "Products/media/IMTpaper.pdf";
	$chc_array[1] = "send-by-email.php";
	$chc_array[2] = "email-list-valdor.html";
	$theChc = $chc_array[$chc]; 
	$theChcPlus = "send-by-email.php?elink=" + extra;
	//alert(extra);
	
	lpos = (screen.width) ? (screen.width-900)/2 : 10;

//	alert("Choice: " +$chc);  
	if(choice == 0) {
		var oWin = window.open($theChc,'',config='width=900,height=700,left=' +lpos+ ',top=20,toolbar=no,scrollbars=yes,resizable=no'); 
		if (oWin==null || typeof(oWin)=="undefined"){
		alert("Please disable your POPUP Blocker Software, and then re-select the LINK button.");
		} 
	}else if(choice == 1) {
		var oWin = window.open($theChcPlus,'',config='width=440,height=300,left=400,top=220,toolbar=no,scrollbars=no,resizable=yes'); 
		if (oWin==null || typeof(oWin)=="undefined"){
		alert("Please disable your POPUP Blocker Software, and then re-select the LINK button.");
		} 
	}else if(choice == 2) {
		var oWin = window.open($theChc,'',config='width=400,height=350,left=400,top=220,toolbar=no,scrollbars=no,resizable=yes'); 
		if (oWin==null || typeof(oWin)=="undefined"){
		alert("Please disable your POPUP Blocker Software, and then re-select the LINK button.");
		} 
	}
  return true; 
}

// JavaScript Document  popupSized.js


var closeElementId='closewindow'; 
var closeLinkText='Close window'; 

function goodPop(wid,hgt,chc) {
 var as,i,popfun,width,height,control
 width=wid;
 height=hgt;
 choice=chc;
 as=document.getElementsByTagName('a'); 
 for (i=0;i<as.length;i++) 
 { 
   if(as[i].target=='_blank') 
   { 
	popfun=function(){ 
// create positioning to centre popMain on viewer's screen:
		if(screen.width<width) {
			lpos = 0;
		}
		else {
			lpos = (screen.width) ? (screen.width-width)/2 : 10;
		}
// cause popup to occur for ONCLICK and ONKEYPRESS events:
	if (choice == 1) {
		var windowAttributes='width=' +width+ ',height=' +height+ ',left=' +lpos+ ',top=20,toolbar=no,scrollbars=no,resizable=no';
	}
	else if (choice == 2) {
		var windowAttributes='width=' +width+ ',height=' +height+ ',left=' +lpos+ ',top=20,toolbar=no,scrollbars=yes,resizable=yes';
	}
	else if (choice == 3) {
		var windowAttributes='width=' +width+ ',height=' +height+ ',left=' +lpos+ ',top=20,toolbar=yes,scrollbars=yes,menubar=no,resizable=no';
	}
	else {
		var windowAttributes='width=' +width+ ',height=' +height+ ',left=' +lpos+ ',top=20,toolbar=yes,scrollbars=yes,resizable=yes';
	}
		var oWin = window.open(this.href,'',windowAttributes); 
		if (oWin==null || typeof(oWin)=="undefined"){
	   	alert("Please disable your POPUP Blocker Software, and then re-select the LINK button.");
		}
       return false; 
     }; 
     as[i].onclick=popfun; 
     as[i].onkeypress=popfun; 
   } 
 }
} 
-->
