<!--
//*****************************************************************************
 function showSelection(objectname){
    
	   
		for (var i=0; i<objectname.length; i++){
		if (objectname.options[i].selected) {
		location= objectname.options[i].value;
			              
			
		}  

	}
	   
}       


var newWin;
function childwindow(url,winname,w,h)
{
windowleft = (screen.width -w)/2;
windowtop = (screen.height -h)/2;

settings = '"toolbar=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,status=no,width='+w+',height='+h+',left='+windowleft+',top='+windowtop+'"';
closeWindow();
newWin = window.open(url,winname,settings);
newWin.focus();

}

/* function closes the window */
function closeWindow() {
	if (newWin && !newWin.closed) {
		newWin.close();
	}
}        

        
//*****************************************************************************

//-->
//end script -->
