// JavaScript Document

function pyear()
{
var curdate = new Date()
var year = curdate.getYear()
if (year < 2000)
year = year + 1900;
document.write(year)
}


function showpopup(theURL,winName,features) { //v2.0
var x
 x = window.open(theURL,winName,features);
}

//function for footer......
function footer()
{
	var str="";

str="<table width='990' border='0' align='center' cellpadding='0' cellspacing='0' class='footer_bg'>"
str=str+"<tr>"
str=str+"<td align='left' style='padding-left:30px; height:25px;' class='footer'>© 2007 shreeairlines</td>"
str=str+"<td align='right' style='padding-right:30px;'><a href='#' class='footer'  onclick=\"showpopup('terms_conditions.htm','TermsAndConditions','width=650,height=500');\">Terms & Conditions</a><span class='footer'>|</span><a href='#' class='footer' onclick=\"showpopup('privacy_policy.htm','PrivacyPolicy','width=650,height=500');\">Privacy Policy</a><span class='footer'>|</span><a href='sitemap.htm' class='footer'>Site map</a></td>"
str=str+"</tr>"
str=str+"</table>"

document.write(str)
	   
}
// end of the footer
