var cont;
var contShowing=0;

function initContact (){

	cont 	= document.getElementById('contact');
	if (document.getElementById('cf')){
		var cf =  document.getElementById('cf');
		cf.onload = function () {
			var h = cf.contentWindow.document.body.offsetHeight;
			var w = cf.contentWindow.document.body.offsetWidth;
			if(h>500) cf.height = h;
			if(w>500) cf.width= w;
		}
		cf.src="contactPop.pl";
	}
	cont.onmousedown = function(ev){
		inside = 1;
	//	return false;
	}
}

function showHideContact (showMsg){
	if (contShowing){
		if (showMsg){
			setTimeout('hideContact()', 10000);
			
		}else{
	
			hideContact();
		}
	}else{
		showContact();
	}

}


function showContact () {


	Effect.SlideDown('contact');
	contShowing=1;
	
	

}
function hideContact () {

	Effect.SlideUp('contact');
	contShowing=0;

}

