var nw
	function openAnyWindow(url, name, w, h, s)
	{
	  if (!nw || nw.closed)
	  {
	    nw = window.open(url, name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=' + s + ',resizable=0, title=0,width=' + w + ',height=' + h + ',left=300, top=230');
	    if(!nw.opener)
	    {
	      nw.opener
	    }
	    nw.document.close()
	  } 
	  else 
	  {
		nw.close()
	    nw = window.open(url, name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=' + s + ',resizable=0, title=0,width=' + w + ',height=' + h + ',left=300, top=230');
	    nw.focus()
	  }
	}
// Delete Popup Confirmation
function confirmDel(myTxt) {
	doyou = confirm("Are you sure you want to " + myTxt + "?"); 
	if (doyou == false)
	return false;
}

// Auto Print Script
var gAutoPrint = true; // Flag for whether or not to automatically call the print function

function printSpecial()
{
	if (document.getElementById != null)
	{
		var html = '<HTML>\n<HEAD>\n';
		/*
		if (document.getElementsByTagName != null)
		{
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}
		
		html += '\n</HE' + 'AD>\n<BODY>\n';
		*/
		var printReadyElem = document.getElementById("printReady");
		
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady section in the HTML");
			return;
		}
			
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Sorry, the print ready feature is only available in modern browsers.");
	}
}