//
// Authored by Christopher Raymond - christopher@macworks.biz
// Copyright 2004 - MacWorks - www.macworks.biz
// MacWorks is a web design company located in the Twin Cities (Minneapolis/Saint Paul) area.
//
 
// ------------------------------------------------------------------------------------------------------------
//  VARIABLE DECLARATIONS:
// ------------------------------------------------------------------------------------------------------------

	function openPopup( path, session, cmd, value_id, value, pop_height, pop_width )
		{
			if ( 0 < pop_height ) height = pop_height; else if ( screen.availHeight ) height = ( screen.availHeight - 80 ); else height = 500;
			if ( 0 < pop_width ) width = pop_width; else if ( screen.availWidth ) width = ( screen.availWidth - 100 ); else width = 600;

			if ( path == "" ) popup_path = "index.php"; else popup_path = path;

			if ( "" != cmd || "" != session || ( "" != value_id && "" != value ))
				{
					popup_path += "?";
					popup_path += ( "" != session ) ? "S=" + session + "&": "";
					popup_path += ( "" != cmd ) ? "_cmd=" + cmd + "&": "";
					popup_path += ( "" != value_id && "" != value ) ? value_id + "=" + value : "";
				}

			mywindow = window.open(popup_path, "popup","location=0,status=0,scrollbars=1,width=" + width + ",height=" + height);
			mywindow.moveTo(10,15);
		}

// ------------------------------------------------------------------------------------------------------------