// JavaScript Document

<!--
// p = URL to load in new window
// w = width of new window
// h = height of new window
// s = scrollbars enabled
function popup(p,w,h,s)
{
	window.open(p,'n','width='+w+', height='+h+',location=no,menubar=no,status=no,toolbar=no,scrollbars='+s+',resizable=no');
	//window.focus();
}

// Created this one with less constraints so it's just a normal popup window

//p = URL to load into new window
function popup2(p)
{
	window.open(p,'n');
	//window.focus();
}

//-->
