// ----------------------------
// General Javascript functions
//-----------------------------


//--------------------------------------------------------
//  FUNCTION:	OpenPopup
//  PARAMETERS:	page URL
//  RETURNS: 	
//  PURPOSE:    Opens requested URL within Popup window
//--------------------------------------------------------

function OpenPopup (c) {
window.open(c,
'window',
'width=380,height=480, screenY=200, scrollbars=no,status=yes');
}

