function doGenPDF(PID,PType,currency) {
	openurl = "genpdf/popgenpdf.php?PID=" + PID + "&PType=" + PType + "&currency=" + currency;
	window.open (openurl,'Generate%20PDF','toolbar=no,location=no,scrollbars=no,width=350,height=150'); 
}

function ShowTagline() {
	ele= document.getElementById("tagline");
	ele.style.display = "block";
}	

function BSPopup(ID,title,width,height){
	 
	  if (ID == "") {
	  	ID = 0;
	  }		
	  if (width == "") {
	  	width = 400;
	  }		
	  if (height == "") {
	  	height = 450;
	  }		
	  
	  theURL  = 'popup.php?ID=' + ID + "&width=" + width + "&height=" + height + "&title=" + escape(title);

	  features = 'toolbar=no,location=no,scrollbars=no,width=' + width + ',height=' + height;

	  window.open(theURL,"BSPopup",features);			 
  
  	 
}
