<!-- 
/*
 Websagogo Standard JS Functions
*/ 

function sizeiFrame() {
	if (document.all) {
		// alert(document.body.scrollHeight);
		parent.window.document.getElementById('detail').height = document.body.scrollHeight;
	} else {
		// alert(document.body.offsetHeight);
		parent.window.document.getElementById('detail').height = document.body.offsetHeight;
	}
}


function setMeta() {
	parent.document.getElementById("DESCRIPTION").content += document.getElementById("DESCRIPTION").content;
	parent.document.getElementById("KEYWORDS").content += document.getElementById("KEYWORDS").content;
	parent.document.title = document.title;
}
//-->


