var startyear = "1950";
var endyear = "2010";
var dat = new Date();
var curday = dat.getDate();
var curmon = dat.getMonth()+1;
var curyear = dat.getFullYear();
function printfile()
{
window.frames['objAdobePrint'].focus();
window.frames['objAdobePrint'].print();
}
function checkleapyear(datea)

{

	if(datea.getYear()%4 == 0)

	{

		if(datea.getYear()% 10 != 0)

		{

			return true;

		}

		else

		{

			if(datea.getYear()% 400 == 0)

				return true;

			else

				return false;

		}

	}

return false;

}

function DaysInMonth(Y, M) {

    with (new Date(Y, M, 1, 12)) {

        setDate(0);

        return getDate();

    }

}

function datediff(date1, date2) {

    var y1 = date1.getFullYear(), m1 = date1.getMonth(), d1 = date1.getDate(),

	 y2 = date2.getFullYear(), m2 = date2.getMonth(), d2 = date2.getDate();



    if (d1 < d2) {

        m1--;

        d1 += DaysInMonth(y2, m2);

    }

    if (m1 < m2) {

        y1--;

        m1 += 12;

    }

    return [y1 - y2, m1 - m2, d1 - d2];

}

function calage(url){	
	var calday = document.birthday.day.options[document.birthday.day.selectedIndex].value;
	var calmon = document.birthday.month.options[document.birthday.month.selectedIndex].value;
	var calyear = document.birthday.year.options[document.birthday.year.selectedIndex].value;
	var isLegal = document.getElementById('hdnvalue').value;

	if(curday == "" || curmon=="" || curyear=="" || calday=="" || calmon=="" || calyear=="")	{
		alert("please fill all the values and click go -");
	}else	{
		
		var curd = new Date(curyear,curmon-1,curday);

		var cald = new Date(calyear,calmon-1,calday);		

		var diff =  Date.UTC(curyear,curmon,curday,0,0,0) - Date.UTC(calyear,calmon,calday,0,0,0);

		var dife = datediff(curd,cald);

		if(dife[0]<18){
			document.getElementById('divmain').style.display='none';
			document.getElementById('divlegal').style.display='';
		}
		else{		
			//alert(url);		
			window.parent.tb_remove(url);
		}
	}

}
