
function setcol(i,c){
var id = i;
var color = c;
document.getElementById(i).style.color = color;
}

function setThis(form,n,t){
	var pak=form[n].selectedIndex;
	var cid = t;
	var sel = form[n].options[pak].value;
	if(sel=="redirect"){
	document.getElementById('red').style.display="block";
	}else{
	document.getElementById('red').style.display="none";
	}
	
	//alert(pak + ' ' + cid + ' ' + sel + ' ' + document.getElementById(cid).style.display.value);
}

function adjustPageheight(h,h2){
if(screen.height > 768){
document.write('<img src="/images/blank.gif" width="1" height="'+ h +'" border="0">');
}
else{
document.write('<img src="/images/blank.gif" width="1" height="'+ h2 +'" border="0">');
}
}

