<!--to hide script contents from old browsers
//
function full( url ){
        if ( WbType == "IE" ){
           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();
        }
}
//
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 == 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 ( OsType == 'Win' && WbType == 'IE' ) { widthid += 17; }
		else if ( OsType == 'Win' && WbType == 'NN' && DocType == 'a' ) { widthid += 17; }
		else if ( OsType == 'Win' && WbType == 'NN' && DocType != 'c' ) { widthid += 16; }
		else if ( OsType == 'Mac' && WbType == 'IE' ) { widthid -= 1; }
		else if ( OsType == 'Mac' && WbType == 'NN' && DocType == 'a' ) { widthid += 16; }
		else if ( OsType == 'Mac' && WbType == 'NN' && DocType != '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;
	window.open( locationid, nameid, attributeid );
}
// end hiding contents from old browsers  -->
