function OpenWin(url,name,w,h)
{
	window.open(url, name, "width="+w+" ,height="+h+"");
}

tDay = new Date();
year = tDay.getYear() - Math.floor((tDay.getYear())/100)*100;
if (year < 10) tYear = ('0' + year)
	else tYear = year;

function showYear()
{
	document.write('20' + tYear);
}

function hide_show_Help(id){
    var sp_head=document.getElementById(id);
    var sp_cont_id='c'+id;
    var sp_cont=document.getElementById(sp_cont_id);

    if(sp_cont.style.display=='none'){
		sp_cont.style.display='inline';
		}else{
		sp_cont.style.display='none';
		};
}
