function Course(){
	if(document.frm.a[0].checked){
		// PE-I
		alert("No Registration at this moment. Sorry for the inconvenience")
		//window.document.location.href="PE-I.html"
	}else if(document.frm.a[1].checked){
		// PE-II
//		alert("No Registration at this moment. Sorry for the inconvenience")
		window.location.href="PE-II.html"
	}else if(document.frm.a[2].checked){
		// Final
//		alert("No Registration at this moment. Sorry for the inconvenience")
		window.location.href="Final.html"
	}
	return false;
}

var menu1=new Array()
menu1[0]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#006600"><a href="nov2004questions.html" class="normal style3" style = text-decoration:none>Question Papers</a></td></tr></table>'
menu1[1]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#DDFFDD"><a href="model.html" class="normal style2" style = text-decoration:none>Model Question Papers</a></td></tr></table>'
menu1[2]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#006600"><a href="awards.html" class="normal style3" style = text-decoration:none>Awards</a></td></tr></table>'
menu1[3]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#DDFFDD"><a href="cour_time.html" class="normal style2" style = text-decoration:none>Time Table</a></td></tr></table>'
menu1[4]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#006600"><a href="new_assign.html" class="normal style3" style = text-decoration:none>Assignment Solution</a></td></tr></table>'
menu1[5]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#DDFFDD"><a href="Activitybased costing.doc" target=_blank class="normal style2" style = text-decoration:none>Solution to Strategic Cost Management</a></td></tr></table>'
menu1[6]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#006600"><a href="fbt.ppt" target=_blank class="normal style3" style = text-decoration:none>Knowledge Centre</a></td></tr></table>'

//Contents for menu 2
var menu2=new Array()
menu2[0]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#006600"><a href="events.html" class="normal style3" style = text-decoration:none>Events</a></td></tr></table>'
menu2[1]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#DDFFDD"><a href="faculty.html" class="normal style2" style = text-decoration:none>Faculties</a></td></tr></table>'
menu2[2]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#006600"><a href="class_venues.html" class="normal style3" style = text-decoration:none>Class Venues</a></td></tr></table>'
//menu2[3]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#DDFFDD"><a href="gmcs.html" class="normal style2" style = text-decoration:none>Diary of a GMCSian</a></td></tr></table>'
//menu2[4]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#006600"><a href="lahore_exp.html" class="normal style3" style = text-decoration:none>Our Students Lahore Experience</a></td></tr></table>'
//menu2[4]='<table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td valign="top" bgcolor="#006600"><a href="lahore_exp.html" class="normal style3" style = text-decoration:none>Our Students Lahore Experience</a></td></tr></table>'

var menutop='140px';
var menuleft='25px';
var menuwidth='100px' //default menu width
var menubgcolor='white'  //menu bgcolor
var disappeardelay=150  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes"
var whichedge="rightedge";

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';top='+menutop+';left='+menuleft+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top=-500
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
//dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
//dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
dropmenuobj.style.left=menuleft;
dropmenuobj.style.top=menutop;
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu




var ContentHead, ContentFoot;
// -----------------------------------------------------
// Heading Content
// -----------------------------------------------------
ContentHead="<html>";
ContentHead=ContentHead+"<head>";
ContentHead=ContentHead+"<title> :: Prime Academy :: </title>";
ContentHead=ContentHead+"<link type='text/css' href='stylesheet.css' rel='stylesheet'>";
ContentHead=ContentHead+"</head>";
ContentHead=ContentHead+"</head><body leftmargin='0' rightmargin='0' marginheight='0' marginwidth='0' bottommargin='0' topmargin='0'>";
ContentHead=ContentHead+"<form name='frm' method='POST'>";
ContentHead=ContentHead+"";
ContentHead=ContentHead+"<table width='780' border=1 align='center' cellpadding='0' cellspacing='0' bordercolor='#E9E9E9'>";
ContentHead=ContentHead+"<tr>";
ContentHead=ContentHead+"    <td colspan='3' background='images/logo-strip.jpg' valign='top'>";
ContentHead=ContentHead+"	<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'";
ContentHead=ContentHead+"  codebase='http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0'";
ContentHead=ContentHead+"  id='Movie1' width='288' height='77'>";
ContentHead=ContentHead+"  <param name='movie' value='prime-logo.swf'>";
ContentHead=ContentHead+"  <param name='quality' value='high'>";
ContentHead=ContentHead+"  <param name='bgcolor'>";
ContentHead=ContentHead+"  <embed name='Movie1' src='prime-logo.swf' quality='high' width='288' height='77'";
ContentHead=ContentHead+"    type='application/x-shockwave-flash'";
ContentHead=ContentHead+"    pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'>";
ContentHead=ContentHead+"  </embed>";
ContentHead=ContentHead+"</object>";
ContentHead=ContentHead+"	</td>";
ContentHead=ContentHead+"    <td width='188' align='right'><img src='images/contact.jpg' width='188' height='77' border='0' usemap='#Map'></td>";
ContentHead=ContentHead+"  </tr>";
ContentHead=ContentHead+"  <tr>";
ContentHead=ContentHead+"    <td width='144' valign='top' height='214' bgcolor='#386858'><img src='images/links.jpg' width='144' border='0' usemap='#Map2'></td>";
ContentHead=ContentHead+"    <td width='231' valign='top' bgcolor='#C8C890'><object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='231' height='214'>";
ContentHead=ContentHead+"      <param name='movie' value='images/flash.swf'>";
ContentHead=ContentHead+"      <param name='quality' value='high'>";
ContentHead=ContentHead+"      <embed src='images/flash.swf' width='231' height='214' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed>";
ContentHead=ContentHead+"    </object></td>";
ContentHead=ContentHead+"    <td width='207' valign='bottom' bgcolor='#FFC800'><img src='images/girls.jpg' width='231' height='214'></td>";
ContentHead=ContentHead+"    <td valign='top' width='175'>";
ContentHead=ContentHead+"	";
ContentHead=ContentHead+"	<marquee direction='up' scrolldelay='20' scrollamount='1'>";
//upward scroll bar here
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'><span style = text-decoration:none>Valedictory Day on 31st March 06 at Hotel Palm Grove. Chief Guest Mr. M.S. Raghavan.";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'><span style = text-decoration:none>Online Registraion commences on 3rd April 2006 and Spot Registration Commences on 10th April 2006.";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'><span style = text-decoration:none>Academy Alumini Secured Nine Ranks in Final Nov 2005 Exam (5th, 10th, 11th, 13th, 28th, 38th, 44th and 49th).";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'><span style = text-decoration:none>CA Institute Exam starts on 2nd May 06 and gets over on 12th May 06 with holidays on 3rd, 7th, and 8th.";


//ContentHead=ContentHead+"	 <ul type=disc>";
//ContentHead=ContentHead+"	 <li class='normal style1'><p align='justify'><B>PE-I</B><br>";
//ContentHead=ContentHead+"    <li class='normal style1'><p align='justify'><B>PE-II</B><br>";
//ContentHead=ContentHead+"	 <li class='normal style1'><p align='justify'><B>Final</B><br>";
//ContentHead=ContentHead+"			</ul>";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>Schedule For 21st Session Progress Test I";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>Revision classes to commence from 1/8/2005";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>Registration starts from 13/7/2005";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>Accounting Standards Workshop to be held on 8th of July 2005. <br>Speaker : <br>Mr. M P Vijay Kumar FCA , FCS , AICWA";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>Workshop on Fringe Benefit Tax to be held at Hyderabad on 27th June 2005.<br> Speaker<br> Mr. R Bupathy FCA";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>Winning Strategies Program to be held on 29th June 2005.<br>Speakers: <br>Mr. R. Bupathy FCA<br>Mr. V.Pattabhi Ram, FCA<br>Ms. Deepa , ACA.";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'><B>Refer to Home Page for Online Registration.</B>";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>21<sup>st</sup> Session Spot Registration is on at no 9 Dr.Thirumurthy Nagar Main street, Opp. CA Instituite Nungambakkam Chennai-34.";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>Attention Final Students – MAFA  - Batch I  at 4.30pm  and  Advanced Accounting Batch I at 6.30pm on Saturday  15th July 06";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>24th Session Online Registration commenced on 25th Sep 06 for PE - II and 2nd Oct 06 for Final ";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>All Registration's will be Online only for the time being. There will be no Spot Registration.";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>Valedictory Day on 29th September 06 at Hotel Palm Grove at 5.30 p.m.";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>Spot Enrolment for Revision Class commenced at Academy's Office for Final";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>Online Enrollment for Revision Class commenced on July 19, 2006";
//ContentHead=ContentHead+"<p align='justify'><span class='bold style1'>Date of commencement of Revision Classes from 11th August 06";






ContentHead=ContentHead+"<P align=justify><SPAN class='bold style1'><FONT face=Verdana color=red size=2>Giant Enterpreneur 4 @ Pondichery on 15th Nov 2008 (Saturday) in association with Harmoney Wealth<P align=justify><SPAN class='bold style1'>";
ContentHead=ContentHead+"<HR color=red>";

ContentHead=ContentHead+"<P align=justify><SPAN class='bold style1'><FONT face=Verdana color=red size=2>28th Session Inaugural Session on 17th Nov 08 at Vani Mahal, G N Chetty Road T. Nagar. Chief Guest Mr. E. Sarath Babu, Alumni IIM Ahmedabad, CEO- Food King. Timings: 6:00pm. <P align=justify><SPAN class='bold style1'>";
ContentHead=ContentHead+"<HR color=red>";


ContentHead=ContentHead+"<P align=justify><SPAN class='bold style1'><FONT face=Verdana color=red size=2>CPA/CFA Classes commenced on 12 July 2008 at Prime Academy. <P align=justify><SPAN class='bold style1'>";
ContentHead=ContentHead+"<HR color=red>";

ContentHead=ContentHead+"<P align=justify><SPAN class='bold style1'><FONT face=Verdana color=blue size=2>CISA 4th Batch classes commenced on 19 July 08. (Week end Classes). Contact Office for Registration. Faculty Mr. R. Chandrasekhar.<P align=justify><SPAN class='bold style1'>";
ContentHead=ContentHead+"<HR color=red>";


ContentHead=ContentHead+"<P align=justify><SPAN class='bold style1'><FONT face=Verdana color=red size=2>Prime Academy Students clear CISA Examination <P align=justify><SPAN class='bold style1'>";
ContentHead=ContentHead+"<HR color=red>";

ContentHead=ContentHead+"<P align=justify><SPAN class='bold style1'><FONT face=Verdana color=blue size=2>CISA Practice Test available on www.primeonlinetest.com <P align=justify><SPAN class='bold style1'>";
ContentHead=ContentHead+"<HR color=red>";

ContentHead=ContentHead+"<P align=justify><SPAN class='bold style1'><FONT face=Verdana color=red size=2>Prime launches CPA Review Classes in association with Kaplan, USA. <P align=justify><SPAN class='bold style1'>";
ContentHead=ContentHead+"<HR color=red>";

ContentHead=ContentHead+"<P align=justify><SPAN class='bold style1'><FONT face=Verdana color=blue size=2>To Register for CPT Online Test, Please go to the following link<P align=justify><SPAN class='bold style1'>";
ContentHead=ContentHead+"<HR color=red>";


ContentHead=ContentHead+"	</marquee>";
ContentHead=ContentHead+"	</td>";
ContentHead=ContentHead+"  </tr>";
ContentHead=ContentHead+"  <tr>";
ContentHead=ContentHead+"  <td valign='top' height='10' bgcolor='#FFCC66' colspan='4'><font face='arial' size='2'>&nbsp;</font></td>";
ContentHead=ContentHead+"  </tr>";
ContentHead=ContentHead+"    <tr>";
ContentHead=ContentHead+"  <td colspan='4'>";
// -----------------------------------------------------

// -----------------------------------------------------
// Foot Content
// -----------------------------------------------------
ContentFoot="</td>";
ContentFoot=ContentFoot+"  </tr>";
ContentFoot=ContentFoot+"    <tr>";
ContentFoot=ContentFoot+"    <td colspan='4' valign='top'><img src='images/bottomstrip.jpg' width='439' height='6'><img src='images/bottom-strip.jpg' width='361' height='6'></td>";
ContentFoot=ContentFoot+"  </tr>      ";
ContentFoot=ContentFoot+"        <tr>";
ContentFoot=ContentFoot+"          <td colspan='4' align='center'><font color='#003399' size='1' face='Verdana, Arial, Helvetica, sans-serif'>Copyright &copy; Prime Academy , 2008</font> </td>";
ContentFoot=ContentFoot+"        </tr>";
ContentFoot=ContentFoot+"</table>";
ContentFoot=ContentFoot+"<map name='Map'>";
ContentFoot=ContentFoot+"  <area shape='rect' coords='10,33,62,45' href='contact.html'>";
ContentFoot=ContentFoot+"  <area shape='rect' coords='72,32,124,46' href='feedback.html'>";
ContentFoot=ContentFoot+"  <area shape='rect' coords='143,35,179,46' href='index1.html'>";
ContentFoot=ContentFoot+"</map>";
ContentFoot=ContentFoot+"<map name='Map2'>";
ContentFoot=ContentFoot+"  <area shape='rect' coords='38,10,94,24' href='about.html'>";
ContentFoot=ContentFoot+"  <area shape='rect' coords='37,42,140,55'  href='#' onClick='return clickreturnvalue()' onMouseout='delayhidemenu()' onMouseover='dropdownmenu(this, event, menu1, 140)' >";
ContentFoot=ContentFoot+"  <area shape='rect' coords='38,74,116,84' href='publications.html'>";
ContentFoot=ContentFoot+"  <area shape='rect' coords='38,102,137,113' href='#' onClick='return clickreturnvalue()' onMouseover='dropdownmenu(this, event, menu2, 140)' onMouseout='delayhidemenu()'>";
ContentFoot=ContentFoot+"  <area shape='rect' coords='36,131,85,144' href='course_main.html'>";
ContentFoot=ContentFoot+"  <area shape='rect' coords='38,162,70,173' href='links.html'>";
ContentFoot=ContentFoot+"  <area shape='rect' coords='41,191,74,203' href='coun_main.html'>";
ContentFoot=ContentFoot+"</map>";
ContentFoot=ContentFoot+"</form>";
ContentFoot=ContentFoot+"</body>";
ContentFoot=ContentFoot+"</html>";
// -----------------------------------------------------
