var newwin;
var myWidth=0;
var myHeight=0;
function OpenRight(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)-10;
    var myTop = 0;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
 {
newwin=window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
 }
 }
	function tamany(iWidth, iHeight) {
		
		for (iWidth=600,iHeight=325; iWidth>=300; iWidth--) {
			
			window.resizeTo(iWidth,iHeight);
			self.moveTo((screen.width/2)-iWidth/2,(screen.Height/2)-iHeight/2);   
			iWidth=iWidth-20
			
  }	
		for (iHeight=300; iHeight<=575; iHeight++) {
			
			window.resizeTo(iWidth,iHeight);
			self.moveTo((screen.width/2)-iWidth/2,(screen.Height/2)-11-iHeight/2);   
			iHeight = iHeight+20
  }
			iHeight=579;
			window.resizeTo(iWidth,iHeight);
}
