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();
}

function logoprint(url,title,h,w,location,menu,scrollon,resize,toolbar,status,autnr){
    if (autnr != "no"){
     
       PopWinAdv(url,title,h,w,location,menu,scrollon,resize,toolbar,status);
    }
}

function showDescription(descLayer)
{
	if(document.getElementById)
	{	
		var style2 = document.getElementById(descLayer).style;
		style2.display = style2.display ? "" : "block";
	}
	else if (document.all)
	{
		var style2 = document.all[descLayer].style;
		style2.display = style2.display ? "" : "block";
	}
	else if (document.layers)
	{
		var style2 = document.layers[descLayer].style;
		style2.display = style2.display ? "" : "block";
	}
}

function redirecter(form)
{
	var index=form.select.selectedIndex;
	if (form.select.options[index].value != "0") 
	{
		location=form.select.options[index].value;
	}
}