// JavaScript Document

function write_iframe(iframe_num)
{
	switch (iframe_num) {
	case 1: 
	result = "<iframe id=men1 name='men1' src='menuz.htm' width='252' height='145'"; break;
	
	//result = "<iframe id=news name='news' src='news.asp' width='180' height='120'"; break;
	default: result = 'Error';
}
document.write(result);
document.write(" scrolling='No' frameborder='0' marginwidth='0' marginheight='0' ></iframe>");
}
