
<!-- 
function openWin(win_url,win_name,win_width,win_height,win_scroll) {
	win_attrib='toolbar=no,location=no,directories=no,menubar=no,resizable,scrollbars=' + win_scroll + ',width=' + win_width + ',height=' + win_height + ',';
	win_left=(screen.width-win_width)/2;
	win_top=(screen.height-win_height)/2;		
    if (navigator.appName.indexOf("Microsoft")>=0) {
		win_attrib+='left=' + win_left + ',top=' + win_top;
    } else {
    	win_attrib+='screenX=' + win_left + ',screenY=' + win_top;
    }
	win_popup = window.open(win_url,win_name,win_attrib);     
}

function openWinMenu(win_url,win_name,win_width,win_height,win_scroll) {
	win_attrib='toolbar=yes,location=yes,directories=yes,menubar=yes,resizable,scrollbars=' + win_scroll + ',width=' + win_width + ',height=' + win_height + ',';
	win_left=(screen.width-win_width)/2;
	win_top=((screen.height-win_height)-140)/2;		
    if (navigator.appName.indexOf("Microsoft")>=0) {
		win_attrib+='left=' + win_left + ',top=' + win_top;
    } else {
    	win_attrib+='screenX=' + win_left + ',screenY=' + win_top;
    }
	win_popup = window.open(win_url,win_name,win_attrib);     
}


if (top!= self) { top.location.href = location.href; } 

// -->
