var show;
var paperino;
var pippo;

function center_me(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 open_it(url,w,h){
	window.open(url,'pop','height='+h+',width='+w+'location=no,resizable=no,scrollbars=no');
}

function open_pop(url,w,h){
	if(pippo) pippo.close();
	pippo = window.open(url,'pop','height='+h+',width='+w+'location=no,resizable=no,scrollbars=yes');
}
function open_pop_index(){
		window.open('path/omologazione.php','pop','width=780, height=450, location=no, resizable=no, scrollbars=yes');
}

function open_pop_dealers(){
	window.open('dealers_pop.html','pop','height=400,width=420,location=no,resizable=no,scrollbars=yes');
}

function open_pop_i(){
	window.open('ringraziamenti.html','pop','height=400,width=420,location=no,resizable=no,scrollbars=yes');
}

function open_it(url,w,h){
	window.open(url,'pop','height='+h+',width='+w+'location=no,resizable=yes,scrollbars=yes');
}

function open_catalogo(url,w,h){
	window.open(url,'pop','height='+h+',width='+w+'location=no,resizable=no,scrollbars=no');
}
function open_catalogo_top(url,w,h){
	if(show) {
	   show.close();
	}
	show=window.open(url,'pop','height='+h+',width='+w+'location=no,resizable=no,scrollbars=no');
	show.focus();
}

function open_album(url,w,h){
	if(paperino) paperino.close();
	paperino = window.open(url,'pop','height='+h+',width='+w+',location=no,resizable=no,scrollbars=no');
}

function close_album(){
	if(paperino) paperino.close();
}

