// JavaScript Document
function PassEmailFunc(num,subject,kind){
  if(num!="" & subject!=""){
    window.open("passEmail.asp?num="+num+"&subject="+subject+"&kind="+kind+"","_blank","width=450,height=270,status=1"); 
  }
}

function holdNewsFotoFunc(Fotoid,val,opt){ 
 if(document.getElementById(Fotoid)!=null){
    document.getElementById(Fotoid).galleryImg = "no" ; 
	//alert(document.getElementById(Fotoid).width)
    var widthVal = document.getElementById(Fotoid).width ;
	var heightVal = document.getElementById(Fotoid).height ;
	if(opt=="h" & heightVal>val){
	    document.getElementById(Fotoid).width  = (widthVal/heightVal)* val ;
		document.getElementById(Fotoid).height  = val ;
	 }
	  if(opt=="w" & widthVal>val){
	    document.getElementById(Fotoid).width  = val ;
		document.getElementById(Fotoid).height  = (heightVal/widthVal)* val ;
     }
  }
}

function potionTheNews(pot){
   document.getElementById("seeval").value = pot ; 
   document.seenews.submit();
}
function toSeePhoto(Topage,subject,pic1,pictxt){
   document.getElementById("p_subj").value = subject ; 
   document.getElementById("p_pic").value = pic1 ; 
   document.getElementById("p_pictxt").value = pictxt ; 
   document.showPhoto.action = Topage ;
   document.showPhoto.submit();
}