function window_open(s)
{
	winpops = window.open(s,"","width=800,height=800,status,scrollbars=1")
}

function windowOpen(s, w, h)
{
	winpops = window.open(s,"","width=" + w + ",height=" + h + ",status,scrollbars=no")
}

function windowOpenSB(s, w, h)
{
	winpops = window.open(s,"","width=" + w + ",height=" + h + ",status,scrollbars=yes")
}

function windowOpenNoScrollbars(s, w, h)
{
	winpops = window.open(s,"","width=" + w + ",height=" + h + ",status,scrollbars=no")
}
