﻿//  FileName: Overlay - Expanded Information
//   Created: 2008-03-20;
//  Modified: 0000-00-00;
//Descrition: This is the global javascript file.
//    Notice: This script was purpose written for Professional Web Pages v5.0 website. Copyright 2008 Professional Web Pages (non transferable).



 
 
 
//START - Window Onload
window.onload = load;
function load()
    {
        
        
    }
//END - Window Onload  

///////////////////////////////////////////////////////////////////////////
// define function that opens the overlay
function openOverlay(arg) 
    {					
	    if (arg == null)
		    {
			    alert("Value cannot be empty - you must provide a value.");
			    arg = "";
			}
		//requires double for some reason?!?!?
		var api = $("#" + arg ).overlay();
		    api = $("#" + arg ).overlay();
		// call it's open() method		
		api.load();			
    }