
function popupW(urll) 
{
if (popupW.arguments.length==2) { var bara="yes"; } else { var bara="no"; } 

window.open(urll,'popupWindow','scrollbars='+bara+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes,copyhistory=no,width=250,height=200,screenX=150,screenY=150,top=150,left=150').focus();
}

function bookmarksite(title, url) {
	if (document.all)
		window.external.AddFavorite(url, title);
	else if (window.sidebar)
		window.sidebar.addPanel(title, url, "");
}

function Des(mypage, w, h, t, scroll, top_p){
scroll=(scroll==0) ? 'no': 'yes';  
LeftPosition = (screen.width-w)/2-13;
TopPosition=(typeof(top_p)!="undefined") ? top_p : (screen.height-h)/2;  
settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',noresize'
win = window.open(mypage, t, settings).focus(); 
}