function loadFlash()
{
	contactWin = window.open('flash.html','flash','width=720,height=340,top=40,left=40,status=0,scrollbars=no,resize=0,menubar=0,directories=0,copyhistory=0');
}

var vWinCal,v1;
function show_prod_desc(filename)
{
	vWinCal = window.open("", "Details1",
		"width=750,height=550,status=no,top=40,left=150,scrollbars=yes");
	vWinCal.location.href = filename;
	vWinCal.window.focus();
}

function license_fees(filename)
{
		vWinCal = window.open("", "Details",
		"width=750,height=550,status=no,top=20,left=150,scrollbars=yes");
		vWinCal.location.href = filename;
		vWinCal.window.focus();
}
function purchase(filename)
{
		v1 = window.open("", "Details",
				"width=750,height=550,status=no,top=20,left=150,scrollbars=no");
		v1.location.href = filename;
		v1.window.focus();
}

function toggleMenu(srcElement)
{
	var menuElement = document.getElementById(srcElement + "A");
	var imgElement = document.getElementById(srcElement + "I");

	if(menuElement.style.display =="")
	{
		menuElement.style.display = "none";
		imgElement.src = "img/collapse.gif"
	}
	else
	{
		menuElement.style.display = "";
		imgElement.src = "img/expand.gif"
	}
}

function toggleMenu_Wiz(srcElement)
{
	var menuElement = document.getElementById(srcElement + "A");
	var imgElement = document.getElementById(srcElement + "I");

	if(menuElement.style.display =="")
	{
		menuElement.style.display = "none";
		imgElement.src = "../img/collapse.gif"
	}
	else
	{
		menuElement.style.display = "";
		imgElement.src = "../img/expand.gif"
	}
}

function ShowPopup(filename)
{	
	vWinCal1 = window.open("", "", "width=750,height=550,status=no,top=75,left=200,scrollbars=yes");
	vWinCal1.location.href = filename;
	vWinCal1.window.focus();
}	

