	<!--
	/*
	*	global variable */
	var file;
	
	
	/*
	*	function to open new window	*/
	function openWindow(file,w,h){
		this.file=file;
		var nueva;
		var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;

		nueva=window.open('showLocation.html','nueva','width='+w+',height='+h+',resizable=no,scrollbars=no,status=no,top='+TopPosition+',left='+LeftPosition);
	}
	
	function openWindowHtml(w,h){
		var nueva;
		var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
			/*
					nueva=window.open('downloadSelect.html','nueva','width='+w+',height='+h+',resizable=yes,scrollbars=no,status=no,top='+TopPosition+',left='+LeftPosition);

*/
		
		nueva=window.open('downloadSelect.html','nueva','width=225,height=250,resizable=yes,scrollbars=no,status=no,top='+TopPosition+',left='+LeftPosition);
	}
	/*
	*	read from child window	*/	
	function read(){
		return this.file;
	}
	
	/*
	*	return object	*/
	function getObject(id){
		return document.getElementById(id);}
	
	
	/*
	*	set image file	*/
	function loadImage(){
		var file=window.opener.read();
		var obj=getObject('img');
		obj.src='./planos/'+file;
	}
	-->
