function setFlashHeight(divid, newH, contrastCol, backgroundCol, demiCol,doIt){
	
	var divid ='flashid';
	
	tempDoc =  window.innerHeight;

	if (tempDoc==null){
	 tempDoc = (document.body.clientHeight);
  }
	  
	  
	  if (doIt=="1"){
	//alert ("mac");
	
	}else {
	
	
	
	
	  if (newH < tempDoc) {
	newH= tempDoc+1;
	}
	
	}
document.getElementById(divid).style.height = newH +"px";
document.body.style.scrollbarArrowColor=contrastCol;
document.body.style.scrollbar3dLightColor=demiCol;
document.body.style.scrollbarDarkShadowColor=demiCol;
document.body.style.scrollbarFaceColor=demiCol;
document.body.style.scrollbarHighlightColor=contrastCol;
document.body.style.scrollbarShadowColor=contrastCol;
document.body.style.scrollbarTrackColor=demiCol;
document.body.style.backgroundColor=demiCol;
}
window.defaultStatus = "Altima"
function openWin(WinAddress) {
	window.open(WinAddress, "newWin", 'resizable=yes,scrollbars=yes,menubar=no,location=no,toolbar=no,status=yes,width=700,height=500')
}
function openSub(backCol,contrastCol) {
tempWindow="newsletter.php?backCol=" +backCol +"&contrastCol=" + contrastCol
	window.open(tempWindow, "openSub", 'resizable=yes,scrollbars=yes,menubar=no,location=no,toolbar=no,status=yes,width=260,height=520')
}
function scrollTopAgain(){
	scrollTo(0,0);
}



