<!--
var NewWin, TrueWin; 
function onw(W_WIDTH,W_HIGHT,W_SOURCE,W_SCROOL){
	var sw
	var sh
	sw = 0;	sh = 0;	sw = screen.width; sh = screen.height;
	//new window top point
	var cx = (sw - W_WIDTH)/2; 
	//new window left point
	var cy = (sh - W_HIGHT)/2;
	if(TrueWin =="true" && !NewWin.closed) NewWin.close();
	TrueWin = "true";
	NewWin = window.open(W_SOURCE,'ONW','width='+W_WIDTH+',height='+W_HIGHT+', ScreenX='+cx+', left='+cx+', ScreenY='+cy+', top='+cy+', resizable=no,status=no,scrollbars='+ W_SCROOL);
}

//Navigation to order
if (document.layers) {n=1;ie=0}
if (document.all) {n=0;ie=1}
document.onmousemove = mouseMove
if (n) document.captureEvents(Event.MOUSEMOVE)
function mouseMove(e) {
	if (n) {x=e.pageX; y=e.pageY;}
	if (ie) {x=event.x; y=event.y;}
	y=y+20; x=x-145;
}
function moveTo(xL,yL) {
        if(n) document.Navigation.left = xL
        if(n) document.Navigation.top = yL
        if(ie) Navigation.style.left  = xL
        if(ie) Navigation.style.top = yL
}
function ShowNavigation(){
moveTo(x,y)
	if (n) document.Navigation.visibility="show";
	if (ie) Navigation.style.visibility="visible";
}
function HideNavigation(){
	if (n) document.Navigation.visibility="hide";
	if (ie) Navigation.style.visibility="hidden";
}

ie4 = (document.all)? true:false

function showBlink() {
if (ie4) {blinking.style.visibility = "visible"}
setTimeout("hideBlink()",100000)
}

function hideBlink() {
if (ie4) {blinking.style.visibility = "hidden"}
setTimeout("showBlink()",300)
}

//-->