/*Copyright ©2006 Tüm hakları saklıdır.
MERKEZ GAZETE DERGİ BASIM YAYINCILIK SANAYİ VE TİCARET A.Ş. */


function __getForm() {
	var theform;
	if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
		theform = document.masterForm;
	} else {
		theform = document.forms["masterForm"];
	}
	return theform;
}


var __doingPostback = false;


function __doPostBack(eventTarget, eventArgument) {
	if (__doingPostback)
		return false;
	
	__doingPostback = true;
	
	var theform = __getForm();
	theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
	theform.__EVENTARGUMENT.value = eventArgument;

	
	if (theform.onsubmit != null) {		
		var res = theform.onsubmit();
		if (res == null || !res) {
			__doingPostback = false;
			return;
		}
	}
	theform.submit();
}


function __registerHiddenField(name, value) {
	var theform = __getForm();
	var ih = document.createElement("INPUT");
	ih.type = "hidden";
	ih.id = name;
	ih.name = name;
	ih.value = value;
	theform.appendChild(ih);
}


function __setHiddenField(name, value) {
	var hid = document.getElementById(name);
	hid.value = value;
}


function __getHiddenField(name) {
	var hid = document.getElementById(name);
	return hid.value;
}
