<!--to hide script contents from old browsers

<!-- Žb’è -->
// DHTML
if ( document.getElementById ) { var dName= 'a' }// IE 5.x 
else if ( document.all ) { var dName = 'b' }// IE 4.x
else if ( document.layers ) { var dName = 'c' }// NN 4.x

var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

// OS
if ( navigator.appVersion.indexOf ( 'Win' ) != -1 ) { var oName = 'W'; }
else if ( navigator.appVersion.indexOf ( 'Mac' ) != -1 ) { var oName = 'M'; }

//
function full( url ){
        if ( bName == "M" ){
           newwindow = window.open(url,"newwindow","scrollbars,width=" + window.screen.availWidth + ",height=" + window.screen.availHeight);
                newwindow.moveTo(0,0);
                newwindow.focus();
        }
		else{
           newwindow = window.open(url,"newwindow","scrollbars,outerwidth=" + window.screen.availWidth + ",outerheight=" + window.screen.availHeight);
                newwindow.moveTo(0,0);
                newwindow.focus();
        }
}
//
<!-- /Žb’è -->

function newwin ( locationid, nameid, widthid, heightid, leftid, topid, conditionid ) {
var attribute01 = 'no';
var attribute02 = 'no';
var attribute03 = 'no';
var attribute04 = 'no';
var attribute05 = 'no';
	if ( conditionid == 0 ){ attribute05 == 'yes' }
	else if ( conditionid == 1 ) { attribute01 = 'yes'; }
	else if ( conditionid == 2 ) { attribute01 = 'yes'; attribute04 = 'yes'; }
	else if ( conditionid == 3 ) { attribute01 = 'yes'; attribute04 = 'yes'; attribute05 = 'yes'; }
	else if ( conditionid == 4 ) { attribute02 = 'yes'; }
	else if ( conditionid == 5 ) { attribute01 = 'yes'; attribute02 = 'yes'; }
	else if ( conditionid == 6 ) { attribute01 = 'yes'; attribute02 = 'yes'; attribute04 = 'yes'; }
	else if ( conditionid == 7 ) { attribute01 = 'yes'; attribute02 = 'yes'; attribute04 = 'yes'; attribute05 = 'yes'; }
	else if ( conditionid == 8 ) { attribute03 = 'yes'; }
	else if ( conditionid == 9 ) { attribute01 = 'yes'; attribute03 = 'yes'; }
	else if ( conditionid == 10 ) { attribute01 = 'yes'; attribute03 = 'yes'; attribute04 = 'yes'; }
	else if ( conditionid == 11 ) { attribute01 = 'yes'; attribute03 = 'yes'; attribute04 = 'yes'; attribute05 = 'yes'; }
	else if ( conditionid == 12 ) { attribute02 = 'yes'; attribute03 = 'yes'; }
	else if ( conditionid == 13 ) { attribute01 = 'yes'; attribute02 = 'yes'; attribute03 = 'yes'; }
	else if ( conditionid == 14 ) { attribute01 = 'yes'; attribute02 = 'yes'; attribute03 = 'yes'; attribute04 = 'yes'; }
	else if ( conditionid == 15 ) { attribute01 = 'yes'; attribute02 = 'yes'; attribute03 = 'yes'; attribute04 = 'yes'; attribute05 = 'yes'; }
	if ( attribute01 == 'yes' ) {
		if ( oName == 'W' && bName == 'M' ) { widthid += 17; }
		else if ( oName == 'W' && bName == 'N' && dName == 'c' ) { widthid += 17; }
		else if ( oName == 'W' && bName == 'N' && dName != 'c' ) { widthid += 16; }
		else if ( oName == 'M' && bName == 'M' ) { widthid -= 1; }
		else if ( oName == 'M' && bName == 'N' && dName == 'c' ) { widthid += 16; }
		else if ( oName == 'M' && bName == 'N' && dName != 'c' ) { widthid += 15; }
	}
	var attributeid = 'width=' + widthid + ',height=' + heightid + ',left=' + leftid + ',top=' + topid + ',menubar=' + attribute02 + ',toolbar=' + attribute03 + ',location=no,directories=no,status=' + attribute04 + ',scrollbars=' + attribute01 + ',resizable=' + attribute05;
	var newwindow = window.open( locationid, nameid, attributeid );
	newwindow.focus();
}

function blankwin ( url ) {
	window.open( url,null );
}

// end hiding contents from old browsers  -->