//	AJAX
function GetXmlHttpObject() {
	var xmlHttp=null;
	try {
		// Firefox, Opera 8.0+, Safari
		xmlHttp = new XMLHttpRequest();
	}
	catch (e) {
		// Internet Explorer
		try {
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	return xmlHttp;
}	


function ClearTxT(txt)
{
	if (txt.value == txt.defaultValue)
	{
		txt.value = ""
	}
}


// Generell funktion för Popupfönster
// ******************************************
function popit(url, name, width, height, scrollbars) {
	newwindow = window.open(url, name, 'status=YES,width=' + width + ',height=' + height + ',scrollbars=' + scrollbars);
	if (window.focus) {
		newwindow.focus()
	}
	return false;
} 


