<!--

function openSubPage(gotoURL, w, h)

{

	nw = window.open(gotoURL, "RAMBOR_Sub", 'height='+h+',width='+w+',location=no,menubar=no,scrollbars=no,resizable=yes,status=no,titlebar=no,toolbar=no');

	nw.resizeTo(w,h);

	nw.focus();

	return false;

}

function openSubPageScroll(gotoURL, w, h)

{

	nw = window.open(gotoURL, "RAMBOR_Sub", 'height='+h+',width='+w+',location=no,menubar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,toolbar=no');

	nw.resizeTo(w,h);

	nw.focus();

	return false;

}

-->

