function set_position(){
	MDiv = document.getElementById("Maindiv");
	HDiv = document.getElementById("Headdiv");
	FDiv = document.getElementById("Footdiv");
	
	MDiv.style.top = '60px';
	
	HDiv.style.top = parseInt(MDiv.style.top)-MDiv.offsetHeight-50+"px";
	HDiv.style.left = -150+"px";
	
	FDiv.style.top = -parseInt(MDiv.style.top)-16+"px";
}

window.onload = function(){ set_position(); }
window.onresize = function(){ set_position(); }

function Send_mail(action, comedien){
	var page='includes/send_mail_1.cfm?com='+comedien+'&act='+action;
	var width=300;
	var height=400;
	var options="menubar=no,scrollbars=no,statusbar=no";
	var top=(screen.height-height)/2;
	var left=(screen.width-width)/2;
	Photo_add = window.open(page,"Mail","top="+top+",left="+left+",width="+width+",height="+height+","+options);
	Photo_add.focus();
}

