function open_scroll(url,w,h){
	now=new Date();
	window.open(url,'immagine'+now.getMinutes()+now.getMilliseconds(),'width='+w+',height='+h+',location=no,scrollbars=yes,resizable=yes');
}

function open_noscroll(url,w,h){
	now=new Date();
	window.open(url,'immagine'+now.getMinutes()+now.getMilliseconds(),'width='+w+',height='+h+',location=no,scrollbars=no,resizable=no');
}

function open_offerte(issime){
	now=new Date();
	if(issime){
		window.open('listino.php?superoccasioni=0','immagine'+now.getMinutes()+now.getMilliseconds(),'width=680, height=400, toolbar=yes,location=no,scrollbars=yes,resizable=no')
	} else {
		window.open('listino.php?superoccasioni=1','immagine'+now.getMinutes()+now.getMilliseconds(),'width=680,height=400, toolbar=yes,location=no,scrollbars=yes,resizable=no')
	}
}

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);
}
var win_height='100%';
var win_width='100%';
