// 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()}
}

// ADD TO BOOKMARK
function bookmarksite(title, url){
	if (document.all)
	window.external.AddFavorite(url, title);
	else if (window.sidebar)
	window.sidebar.addPanel(title, url, "")
}