// JavaScript Document - pop.js - Jan.12.2008 - Wayne J. Froese for Valdor Technology International Inc.
<!--
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; 
}
-->