function center(w,h){
	if(navigator.appName.indexOf('Explorer')+1){
		var win_width=w;
		var win_height=h;
	} else {
		var win_width=window.outerWidth;
		var win_height=window.outerHeight;
	}
	var pos_x=(screen.width-win_width)/2;
	var pos_y=(screen.height-win_height)/2;
	moveTo(pos_x,pos_y);
}

function show_details(lang,details){
	now=new Date();
	window.open('../show_details.php?lang='+lang+'&details='+details,'details_'+now.getMinutes()+now.getMilliseconds(),'height=540,width=520,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no');
}

function show_pic(pic){
	now=new Date();
	window.open('../portfolio.php?show='+pic,'pic_'+now.getMinutes()+now.getMilliseconds(),'height=460,width=565,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no');
}

function open_form(){
	now=new Date();
	window.open('consulenza_form.php','pic_'+now.getMinutes()+now.getMilliseconds(),'height=460,width=400,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no');
	return false;
}

function open_form_sub(){
	now=new Date();
	window.open('../path/consulenza_form.php','pic_'+now.getMinutes()+now.getMilliseconds(),'height=460,width=400,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no');
	return false;
}

function open_form_subsub(){
	now=new Date();
	window.open('../../path/consulenza_form.php','pic_'+now.getMinutes()+now.getMilliseconds(),'height=460,width=400,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no');
	return false;
}

