// JavaScript Document
var win = null;
var enableanchorlink=0 //Enable or disable the anchor link when clicked on? (1=e, 0=d)

var ie5=document.all
var ns6=document.getElementById&&!document.all

function newwindow(mypage,myname,w,h,scroll_)
{
	left_ = (screen.width) ? (screen.width-w)/2 : 0;
	top_ = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+top_+',left='+left_+',scrollbars='+scroll_+',menubar=no,status=no,toolbar=no,resizable=no'
	win = window.open(mypage,myname,settings)
}

function clickreturnvalue()
{
	if ((ie5||ns6) && !enableanchorlink) return false
	else return true
}

