function openSite() {
	var screen_height = screen.height;
	var screen_width = screen.width;
	var window_width =  screen.availWidth;
	var window_height = screen.availHeight;
	
	//alert(window_width + " " +window_height)
	
	var url = "";
		
	var buffer = (document.all || document.layers) ? 30 : 48;
		
	if (screen_width <= 800) {
		url = "artambo1024.htm";
		var features = "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + window_width + ",height=" + window_height; 	
     } else if (screen_width > 800 && screen_width <= 1024 ){
		url = "artambo1024.htm";		
		var features = "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + window_width + ",height=" + window_height;
	} else if (screen_width > 1024 && screen_height < 900){
		url = "artambo1280_16_9.htm";	
		var features = "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + window_width + ",height=" + window_height;	
	} else {
		url = "artambo1280.htm";	
		var features = "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + window_width + ",height=" + window_height;	
	}
		
	var winZoh = "winZoh";
	window.open(url,winZoh,features);
}

function resizeThis() {
	window.moveTo(0,0);
	
	if (document.all) {
		top.window.resizeTo(screen.availWidth,screen.availHeight);
	} else if (document.layers||document.getElementById) {
		if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
			top.window.outerHeight = screen.availHeight;
			top.window.outerWidth = screen.availWidth;
		}
	}
}