/*   Company: 	 	Doran Construction, Inc.
	 Description:	This file contains the javascript functions that will be used in the site.  
	 Legal:		 	Copyrite September 2006, MJM Productions, LLC, all rights reserved.
*/
// JavaScript Document

/*   Function: 	 	g_Show
	 Description:	This code shall open up a new window with the full size version of the selected thumbnail.
	 Input:			imageURL - Path to the full saze image
	 				winType - console or fixed or elastic
					winHeight - window height in pixels
					winWidth - window width in pixels
	 Legal:		 	Copyrite September 2006, MJM Productions, LLC, all rights reserved.
*/
function g_Show(imageURL,winType,winHeight,winWidth) {
	var winOptions="";
	
	if (winType=="console") winOptions="resizable,height="+winHeight+",width="+winWidth;
	if (winType=="fixed") winOptions="status,height="+winHeight+",width="+winWidth;
	if (winType=="elastic") winOptions="toolbar,menubar,scrollbars,resizable,location,height="+winHeight+",width="+winWidth;
	window.open(imageURL, 'newWin', winOptions);
	
}

