// JavaScript Document
var myPopup = window.createPopup();

var timeoutID;

function resetTimer()
{
    clearTimeout(timeoutID);
    timeoutID = setTimeout("myPopup.hide()", 3000);
}


function trueFeed()
{

    var popupBody = myPopup.document.body;

    popupBody.style.backgroundColor = "#e5e5e5";

    popupBody.style.border = "solid black 1px";

    popupBody.innerHTML = "<p align='center' style='color:#333333;font-family:tahoma;font-size:12px'><br><b>Your Feedback is Submitted Succesfully...</b></p>";

    myPopup.show(530, 260, 300, 45, document.body);

//	resetTimer();

	clearTimeout(timeoutID);
    timeoutID = setTimeout("myPopup.hide()", 3000);
	
//	document.write("<meta http-equiv='refresh' content='2;URL=feedback.php'>");
  
	window.location.href="feedback.php";
	
}
function falseFeed()
{

    var popupBody = myPopup.document.body;

    popupBody.style.backgroundColor = "#e5e5e5";

    popupBody.style.border = "solid black 1px";

    popupBody.innerHTML = "<p align='center' style='color:#333333;font-family:tahoma;font-size:12px'><br><b>Kindly fillup the details properly...</b></p>";

    myPopup.show(530, 260, 300, 45, document.body);

    resetTimer();
}


function falseEmail()
{

    var popupBody = myPopup.document.body;

    popupBody.style.backgroundColor = "#e5e5e5";

    popupBody.style.border = "solid black 1px";

    popupBody.innerHTML = "<p align='center' style='color:#333333;font-family:tahoma;font-size:12px'><br><b>Enter your Email ID properly...</b></p>";

    myPopup.show(530, 260, 300, 45, document.body);

    resetTimer();
}


function trueAlumni()
{

    var popupBody = myPopup.document.body;

    popupBody.style.backgroundColor = "#e5e5e5";

    popupBody.style.border = "solid black 1px";

    popupBody.innerHTML = "<p align='center' style='color:#333333;font-family:tahoma;font-size:12px'><br><b>Your Alumni is Submitted Succesfully...</b></p>";

    myPopup.show(530, 260, 300, 45, document.body);

    reset_Alumni_timer();
}
function reset_Alumni_timer()
{
    clearTimeout(timeoutID);
    timeoutID = setTimeout("myPopup.hide()", 3000);
	document.write("<meta http-equiv='refresh' content='2;URL=alumni_form.php'>");
//	window.location.href="alumni_form.php";
}
