
/* ----------------------------------------------------

	copper & concrete
	copyright 2006
	christopher@copperandconcrete.com

	enlarge.js
   
   ---------------------------------------------------- */


	/////////////////////////////////////////////////////////
	//
	//  popup window array
	//
	/////////////////////////////////////////////////////////
	
		popup_windows = new Array();


	/////////////////////////////////////////////////////////
	//
	//  FUNCTION:  Enlarge
	//
	/////////////////////////////////////////////////////////
	
 
		function Enlarge (code, orientation) {
		
			script = "php/popup.php?code=" + code;
			
			if (orientation == 'tall') {
			
				 width = 350;
				height = 520;
			}

			else {
			
				 width = 476;
				height = 450;
			}

			args = "width=" + width + ",height=" + height + ",resizable=no,scrollbars=no";

			if (typeof (popup_windows[name]) != "object") {
			
				popup_windows[code] = window.open (script, code, args);
			}
			
			else {
			
				if (! popup_windows[code].closed) {
				
					popup_windows[code].location.href = script;
				}
			
				else {
		
					popup_windows[code] = window.open (script, code, args);
				}
			}
		
			popup_windows[code].focus();
		}
	