// JavaScript Document
function rightcolumn()
{
	//alert('ddd');
var randomnum=Math.floor((Math.random()*6));
var hrarray=new Array();
hrarray[0]="#408bc9";
hrarray[1]="#1d8281";
hrarray[2]="#77ad35";
hrarray[3]="#e02b83";
hrarray[4]="#df2c2b";
hrarray[5]="#eeba25";
//alert(randomnum);
//document.getElementById('hr').color=hrarray[randomnum];
document.getElementById('heading').style.color="#000000";
document.getElementById('righttop').src="images/rightcolumn/" + randomnum + "/top.png"; 
document.getElementById('rightbot').src="images/rightcolumn/" + randomnum + "/bot.png"; 
document.getElementById('inside').style.backgroundImage="url(images/rightcolumn/" + randomnum + "/inside.png)"; 
document.getElementById('rightmiddle').style.backgroundImage="url(images/rightcolumn/" + randomnum + "/1px.png)"; 
}


function check()
{
	
	if(document.getElementById('name').value=="" || document.getElementById('company').value=="" || document.getElementById('email').value=="" || document.getElementById('interest').value=="")
	{
		alert('Some required fields are empty');
	} 
	else 
	{ 
		document.getElementById('submit').type="submit";
	}
}