// JavaScript Document
function show(field){
	if(document.getElementById(field) != null){
		if(document.getElementById(field).style.display == "block"){
			document.getElementById(field).style.display = "none";
		}
		else{
			document.getElementById(field).style.display = "block";
		}
	}
}
function main(path){

	foo = "<iframe frameborder='no' scrolling='auto' width='100%' height='385' src='http://www.koreayhdistys.net/pages/"+ path +".html?rnd="+ ((new Date()).valueOf()) +"' />"
document.getElementById('etu').innerHTML = foo; 
  
		  // Jos haluaa optimoida, niin tota vois viilata siten, että rnd muuttuu sillon kun sisältö muuttuu..
		  if(document.getElementById('editor') != null){
				  document.getElementById('editor').href = "admin/content.php5?view="+ path;
		  }
}

