<!--	
// Screen Setting	

function showLayer(id) {
  document.getElementById(id).style.visibility = "visible";
}
  
function hideLayer(id) {
  document.getElementById(id).style.visibility = "hidden";
}

function checkscreen() {	
//	alert('Your monitor resolution is set at '+screen.width+'x'+screen.height);
	if (screen.width > 800) {
		document.getElementById("f1").style.visibility = "hidden";
		document.getElementById("f2").style.visibility = "hidden";
	} else {
		document.getElementById("f1").style.visibility = "visible";
		document.getElementById("f2").style.visibility = "visible";
	}	
	bottomFrame();	
}

function bottomFrame() {
	var showRows = "*,71";
	var hideRows = "*,0";
	
	currentRows = parent.document.getElementById("bf1");
	
	if (screen.width <= 800) {
//		alert(currentRows.rows);
		currentRows.rows = hideRows;
	} else {
		currentRows.rows = showRows;
	}	
}

function hideFrame() {
	var showRows = "75,*";
	var hideRows = "*,0";
	
	currentRows = parent.document.getElementById("bf1");
	//alert(parent.document.getElementById("bf1"));
	currentRows.rows = hideRows;	
}

//-->