function PopupPencereAc(Adres) {
	//window.showModalDialog(Adres,"","dialogHeight: 400px; dialogWidth: 400px; dialogTop: 150px; dialogLeft: 150px; edge: Raised; center: Yes; help: No; resizable: Yes; status: No;");
	window.open(Adres,"popup","height=400, top=100, width=400, left=100, location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, titlebar=no, toolbar=no").focus();
}

function KullaniciPenceresiAc(KullaniciAnah) {
	PopupPencereAc('../kullanici/KullaniciBilgisi.aspx?KULLANICI=' + KullaniciAnah);
}

function CagiranEkrandaAc(Adres) {
	var TheWindow;
	TheWindow = window.opener;
	if (TheWindow == null)
		TheWindow = window;
	TheWindow.navigate(Adres);
	
}
function test() {
	alert('HELO');
}
