function checkform()
{
		if (document.subscription.email.value == '')
			{
				alert("Please enter your Email Address!")
			}
		else
			{
				if (document.subscription.myname.value == '')
					{
						alert("Please enter Your Name!")
					}
				else
					{
						document.subscription.submit();

					}
			}
}

function OpenWindow(URL)
{
	window.open(URL);
}

function DataPanel_ExpandCollapse(hd,st,title)
				{
					//Set every Menu to invisible except for the one that just have been clicked 
					//if (ContentRow != hd)
					var ContentRow
					var ContentPanel
					var i
					//alert(document.getElementById(st).value)
					if (document.getElementById(st).value == 'false')
						{
							for (i = 2;i < 26;i++){
								ContentRow = 'DataPanel' + i + '_ContentRow'
								
								document.getElementById(ContentRow).style.display = 'none';
							}
							document.getElementById(st).value = 'true';
							document.images.item("DropDown").src = "images/dropdown_open.gif";
						}
					else
						{
							for (i = 2;i < 26;i++){
								ContentRow = 'DataPanel' + i + '_ContentRow'
								//alert(ContentRow)
								if(i!=7 && i!=8)
								{
									document.getElementById(ContentRow).style.display = '';	
								}
							}
							document.getElementById(st).value = 'false';
							document.images.item("DropDown").src = "images/dropdown_close.gif";
						}
				}