function SwitchProduct(frm)
{
	if ( frm.value != '' )
		window.location = frm.value;
	else
		return false;
}

function openLicense(url, id)
{
	if ( id == '') id = 'license';
	if ( url != '' ) window.open(url, id, 'statusbar=0,menubar=0,width=450,height=340,resizable=1');
	else return true;

	return false;
}

