var gTrainingWindow

function rOpenIn2ndWindow( TheURL, Property ) {
var WindowName = rGetRandomWindowName();
if (gTrainingWindow == null || gTrainingWindow.closed)
{
if (!Property) {
Property = "resizable=yes,menubar=yes,toolbar=yes,scrollbars=yes,status=yes,directories=no,location=yes,outerWidth=640,outerHeight=480";
}
gTrainingWindow = window.open( TheURL, WindowName, Property );
}
else
{
gTrainingWindow.location = TheURL;
}
gTrainingWindow.focus();
}

function rGetRandomWindowName ( ) {
var RightNow = new Date();
var WindowName = "Citron" + Math.round(Math.random() * 1000) + RightNow.getHours() + RightNow.getMinutes() + RightNow.getSeconds();
return WindowName;
}

function rOnMouseOver ( StatusMessage ) { top.window.status = "" + StatusMessage; return true; }

