	
function gopush(nvv,nd){			 
	var nnlnk ='frmslide';
	var xhref ='';
	var xxsz ='';
	var xsrc ='';
	switch (nvv){
		 case 'about':
		    xhref ='about.php?t=about';
		    xxsz ='width=500&amp;height=500';		    
		    break;
		 case '5':
		    xhref ='msg.php?t=5';
		    xxsz ='width=500&amp;height=500';
		    break; 
		 case '10':
		    xhref ='msg.php?t=10';
		    xxsz ='width=500&amp;height=500';
		    break;
		 case 'bible':
		    xhref ='msg.php?t=bi';
		    xxsz ='width=500&amp;height=500';
		    break;
		 case 'spirit':
		    xhref ='msg.php?t=sp&d='+nd;
		    xxsz ='width=500&amp;height=500';
		    break;
		 case 'class':
		    xhref ='class.php?t=class';
		    xxsz ='width=500&amp;height=500';
		    break;   
		 case 'lnk':
		    xhref ='msg.php?t=lnk';
		    xxsz ='width=500&amp;height=500';
		    break;  
		 case 'news':
		    xhref ='news.php?t=lnk';
		    xxsz ='width=500&amp;height=500';
		    break;         
		 case 'gbook':
		    xhref ='gbook.php?t=gbook';
		    xxsz ='width=600&amp;height=600';
		    break;   
  }    
  
  xsrc =xhref+'&iframe=true&amp;'+xxsz;			
  //xsrc ='about.php?t=about&iframe=true&amp;width=500&amp;height=500';
	document.getElementById(nnlnk).href=xsrc;	
	
	//alert(xsrc);
	
	if(document.all) {  
    document.getElementById(nnlnk).click();                 
  }  
  else  
  {  
    var evt = document.createEvent("MouseEvents");  
    evt.initEvent("click", true, true);  
    document.getElementById(nnlnk).dispatchEvent(evt);  
  }
}		


	 
