
// ----------------------------------------------------------------------------------------------------			
// function RenkDegistir
// Bu fonksiyon aktif textbox'ın rengini değiştirir.
// ----------------------------------------------------------------------------------------------------

function RenkDegistir(obj, myevent){
	if ( myevent == 1 ) {
		obj.style.background = '#F7F7F7';
	}
	if ( myevent == 0 ) {
		obj.style.background = '#FFFFFF';
		prevVal = obj.value;
	}
}

// ----------------------------------------------------------------------------------------------------
var popUpWin=0;
function openWindowCenter(url, height, width, kuyruk){
	if(popUpWin){
		if(!popUpWin.closed) 
			popUpWin.close();
	}
	
	if (kuyruk != ""){
		openUrl = url + "?" + kuyruk;
	}
	else {
		openUrl = url;
	}
	
	posY	= (screen.availHeight/2) - (height/2);
	posX	= (screen.availWidth/2) - (width/2);
	
	popUpWin= window.open(openUrl,'popUpWin',"height="+height+",width="+width+",status=0,toolbar=0,location=0,menubar=0,directories=0,scrollbars=0,left="+posX+",top="+posY);
}

function getHref(){
	return document.location.href;
}