
function opWindow(url, width, height) {

	try {
	
		var opWindow = window.open( url, "_blank", "width=" + width + ",height=" + height + ",toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no" );
	
	
		if( opWindow ) {
			
			try {
			
				opWindow.focus();
				
			} catch(e) {
			
				try {
				
					self.focus();
					
				} catch(e) {}
			}
		}
	
	} catch(e) {
		//
		//alert("2");
	}
	
	return false;
 
}

function opWindowS(url, width, height) {

	try {
	
		var opWindowS = window.open( url, "_blank", "width=" + width + ",height=" + height + ",toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no" );
		
		if( opWindowS ) {
			
			try {
				opWindowS.focus();
			} catch(e) {
			
				try {
				
					self.focus();
					
				} catch(e) {}
			
			}
			
		}
	
	} catch(e) {
		//
	}
	
	return false;
 
}


