window.name='ds';

function PopWin(url,title,h,w) { 
	popupWin = window.open(url,title,'scrollbars=yes,resizable=yes,height=' + h + ',width=' + w+'');// ' + h + '
	popupWin.focus();
} 

function PopWinAdv(url,title,h,w,location,menu,scrollon,resize,toolbar,status) {
	popupWin = window.open(url, title, 'location='+location+',menubar='+menu+',toolbar='+toolbar+', scrollbars='+scrollon+', resizable='+resize+', height=' + h + ', width=' + w + ', top=140,left=190')// ' + h + '
//	if (popupWin.opener == null) popupWin.opener = self;
	popupWin.focus();
}

function Popup_open(urlStr) {
	this_win=window.open(urlStr,'Popup','scrollbars=yes,resizable=no,width=366,height=400,top=169,left=177');
        this_win.focus();
}
