<!-- Begin
// ----------------------------------------------------------------------------------------------------------------------------------
// PROGRAM
// PAGE            VMC.js
// AUTHOR          Karan Bajwa
// LANGAUGE        JavaScript
// PURPOSE         Custom JavaScript functions
//
// REVISION HISTORY
// Date			Progammer	  Purpose 
// ----------	--------------------------------------------------------------------------------------------------------------------
// 10/09/2009	      Karan Bajwa	Initial write
//---------------------------------------------------------------------------------------------->

function openWind(url,windName) {
var winWidth = window.screen.width - 100;
    var winHeight = window.screen.height - 200;
    var newWind = window.open(url,windName,"menubar=1,resizable=1,toolbar=1,scrollbars=1,location=1,status=1,width=" + winWidth + ",height=" + winHeight + "'");
    newWind.focus();  

}

function goToPage(url) {
    location = url;
}

// EOF -->
