//////////////////////////////////////////////////////////////
// Common functions
// v1.00 (Budd Wright)
//
// Description:
//////////////////////////////////////////////////////////////
// Contains common page functions
//////////////////////////////////////////////////////////////
//
// Usage:
//////////////////////////////////////////////////////////////
// <script language="javascript" src="js/common.js"></script>
//////////////////////////////////////////////////////////////
//
// v1.00 Notes
// -----------
// Requires pageName variable to be set elsewhere
//
// Known Issues
// ------------
// 
//////////////////////////////////////////////////////////////

// Global Variables
myWindow = null;


// If MP3 Window hasn't been opened, open MP3 player
if( myWindow == null )

{
	myWindow = window.open("http://www.jewisheyes.org/mp3player.html",
	  "mywindow", "'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,titlebar=yes,width=253,height=300");
	myWindow.moveTo(0, 350);
}



