// POPUP WINDOW
function popupwin(url,width,height,scrollbars) {
	var newwindow;
	var name="promowin";
	newwindow=window.open(url,name,'height='+height+',width='+width+',scrollbars='+scrollbars+',status=0,toolbar=0,menubar=0,resizable=0');
	if (window.focus) {newwindow.focus()}
}


