function htSecAu(cot)
{
	switch(cot)
	{
		case "1":
			document.all["width_h"].value = "468";
			document.all["height_t"].value = "200";
			document.all["h_sayisi"].value = "20";
			break;
		case "2":
			document.all["width_h"].value = "468";
			document.all["height_t"].value = "60";
			document.all["h_sayisi"].value = "20";
			break;
		case "3":
			document.all["width_h"].value = "150";
			document.all["height_t"].value = "250";
			document.all["h_sayisi"].value = "10";
			break;
		case "4":
			document.all["width_h"].value = "150";
			document.all["height_t"].value = "250";
			document.all["h_sayisi"].value = "20";
			break;
		case "5":
			document.all["width_h"].value = "468";
			document.all["height_t"].value = "16";
			document.all["h_sayisi"].value = "20";
			break;
	}
	document.all["htvalue"].value = cot;
}


var min=8;
var max=18;
function FontSize(f) {
   var p = document.getElementsByTagName('dl');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("pt",""));
      } else {
         var s = 10;
      }
      if(s!=max) {
         s = f;
      }
      p[i].style.fontSize = s+"pt"
   }
}

function confirmSubmit(msg)
{
var agree=confirm(msg);
if (agree)
	return true ;
else
	return false ;
}

function noerror(){ 
return true;
} 

window.document.onerror = noerror;