

function OpenWindow(theURL,winName,features)
{appWindow = window.open(theURL,winName,features);
appWindow.focus();}


function walkOver(src,clearOver){
if (!src.contains(event.fromElement)){
	src.style.cursor = 'hand'; 
	src.bgColor = clearOver;}}


function walkOut(src,clearIn)
{if (!src.contains(event.toElement))
{src.style.cursor = 'default';
src.bgColor = clearIn;}}


function walkClick(src)
{if(event.srcElement.tagName=='TD')
{src.children.tags('A')[0].click();}}

if (parent.frames.length > 0) {
parent.location.href = location.href;}

function CenterPopUp() {
	var PopWidth;
	var PopHeight;
	PopWidth = (window.screen.width/2) - (122 + 15); //half the screen width minus half the new window width (plus 5 pixel borders).
	PopHeight = (window.screen.height/2) - (27 + 75); //half the screen height minus half the new window height (plus title and status bars).
	var TheWindow = window.open("soon.htm","Window2","status,height=250,width=390,resizable=no,toolbar=no,location=no,left=" + PopWidth + ",top=" + PopHeight + ",screenX=" + PopWidth + ",screenY=" + PopHeight + ",scrollbars=no");
	TheWindow.focus();}
	
	function walkOverNew(src,clearOver)
{if (!src.contains(event.fromElement))
{src.style.cursor = 'hand'; src.bgColor = clearOver;}}

function walkOutNew(src,clearIn)
{if (!src.contains(event.toElement))
{src.style.cursor = 'default';
src.bgColor = clearIn;}}

function walkClickNew(src)
{if(event.srcElement.tagName=='TD')
{src.children.tags('A')[0].click();}}
