/*function showcr()
{
	var returnValue = window.showModalDialog("mediakit_credentials.aspx", null, "dialogHeight:180px;dialogWidth:400px;help:0;resizable:0;status:0;");
	if (returnValue != null && returnValue != "")
	{
		var xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
		xmlDoc.loadXML(returnValue);

		var objNodeList = xmlDoc.getElementsByTagName("n");

		var tbName = objNodeList.item(0).text;
		var tbCompany = objNodeList.item(1).text;
		var tbEMail = objNodeList.item(2).text;

		document.all["tbName"].value = tbName;
		document.all["tbCompany"].value = tbCompany;
		document.all["tbEMail"].value = tbEMail;

		document.forms["Form1"].submit();
	}
}*/

function showcr()
{
	window.open("mediakit_credentials.aspx","users",'top=180,left=325,width=390,height=200,resizable=no,scrollbars=no');
}

function submit_credentials()
{
	if (document.Form2.tbName.value == "")
	{
		alert("Please fill necessary field 'Name'");
		document.Form2.tbName.focus();
		return false;
	}

	if (document.Form2.tbEMail.value == "")
	{
		alert("Please fill necessary field 'E-Mail'");
		document.Form2.tbEMail.focus();
		return false;
	}

	document.Form2.submit();
}
