<!--
var waiting = null;

function openWaitWindow(showVisible, ID)
	{
		/*var WWidth=400;
		var WHeight=150;
		var centerx=(screen.width-WWidth)/2; 
		var centery=(screen.height-WHeight)/2;
		var id = 0;
		if (ID) id=ID;
		
		if (!showVisible)
		{
			WWidth=10; WHeight=10;
			centerx=3000; centery=2100;
		}
		
		try
			{
				waiting=window.open("wait.aspx?ID=" + id,"PleaseWait","height=" + WHeight + ",innerHeight=" + WHeight + ",width=" + WWidth + ",innerwidth=" + WWidth + ",top=" + centery + ",left=" + centerx + ",resizeable=0,scrollbars=0,menubar=0,dependent=1");					
			}
		catch (er)
			{	waiting = null;	}

		if (waiting && showVisible) 			
				waiting.focus();	*/			
	}

function loadTemplate(ID, Qty)
{
	try 
		{ 
			openWaitWindow(true); 
		} 
	catch(e) {} 
	finally 
		{
			if (Qty)
				location.href='/editor.aspx?ID=' + ID + '&Qty=' + Qty; 
			else
				location.href='/editor.aspx?ID=' + ID; 
		}; 		
}

function closeWaitWindow()
	{
		openWaitWindow(false, 0);
		if (waiting)
			waiting.close();
	}
	
//-->