function showalert(status){
	alert(status);
}

/*
function controlHandler(){
	var obj = window.document.getElementById('site_control');
	
	if(obj.style.display == 'block'){
		window.document.getElementById('handler_btn').innerHTML = 'SHOW';
		obj.style.display = 'none';
	}else{
		window.document.getElementById('handler_btn').innerHTML = 'CLOSE';
		obj.style.display = 'block';
	}
}
*/

function showContact(){
	
	var url = 'contact/';
	var name = 'newwindow';
	var iWidth = 550;
  	var iHeight = 500;
  	var iTop = (window.screen.availHeight-30-iHeight)/2;
  	var iLeft = (window.screen.availWidth-10-iWidth)/2;
  	
  	
	window.open(url, name, 'modal=yes, width='+iWidth+', height='+iHeight+', top='+iTop+', left='+iLeft+', toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, status=no');
	
	
	//window.showModalDialog(url, 'dialogWidth=550, dialogHeight=500, dialogLeft='+iTop+', dialogLeft='+iLeft+', scroll=yes');
}


function closeContact(){
	//alert('close');
	//var url = 'contact/index.php';
	window.close();
}
