

function view()
{
	var result = window.open("", "", "height=800,left=" + ((screen.width) ? (screen.width-800)/2 : 0) + ",top=" + ((screen.height) ? (screen.height-800)/2 : 0) + ",width=800");

	var tmp = result.document;
	tmp.write(document.getElementById('html').value);
	tmp.close();

	return false;
}
