function pic_frame_start()
{
	echo(
		'<table class="pic_frame">' +
			'<tr>' +
				'<td id="fix_png" style="width:5px;height:4px;background:url(/ui/base/pf1.png) left top no-repeat" nowrap></td>' +
				'<td id="fix_png" style="height:4px;background:url(/ui/base/pf2.png) left top repeat-x"></td>' +
				'<td id="fix_png" style="width:7px;height:4px;background:url(/ui/base/pf3.png) left top no-repeat" nowrap></td>' +
			'</tr>' +
			'<tr>' +
				'<td id="fix_png" style="width:5px;background:url(/ui/base/pf4.png) left top repeat-y"></td>' +
				'<td id="fix_png" style="background:#fbe7cb">'
	);
}

function pic_frame_end()
{
	echo(
				'</td>' +
				'<td id="fix_png" style="width:7px;background:url(/ui/base/pf5.png) left top repeat-y"></td>' +
			'</tr>' +
			'<tr>' +
				'<td id="fix_png" style="width:5px;height:8px;background:url(/ui/base/pf6.png) left top no-repeat" nowrap></td>' +
				'<td id="fix_png" style="height:8px;background:url(/ui/base/pf7.png) left top repeat-x"></td>' +
				'<td id="fix_png" style="width:7px;height:8px;background:url(/ui/base/pf8.png) left top no-repeat" nowrap></td>' +
			'</tr>' +
		'</table>'
	);
}

function menu_frame_start(img, height)
{
	echo(
			'<div style="margin-top:10px;width:199px;background:url(/ui/base/menu_body.gif) 0px 30px repeat-y">' +
			'<div style="position:absolute;width:199px;height:218px;margin-top:-10px;z-index:10;background:url(/ui/base/menu_header.gif) 0px 0px no-repeat"></div>' +
			'<div style="position:relative;width:199px;height:' + height + 'px;z-index:15;background:url(' + img + ') 0px 0px no-repeat"></div>' +
			'<div class="ui_main_menu" style="position:relative;z-index:20">'
	);
}

function menu_frame_end()
{
	echo(
			'</div>' +
			'</div>' +
			'<div style="position:absolute;width:199px;height:120px;margin-top:-100px;z-index:10;background:url(/ui/base/menu_footer.gif) 0px 0px no-repeat"></div>' +
			'<div style="margin-bottom:20px;"></div>'
	);
}

preload_image('/ui/base/bg.gif');
preload_image('/ui/base/body_bg.jpg');
preload_image('/ui/base/details.gif');
preload_image('/ui/base/details_hover.gif');
preload_image('/ui/base/pf1.png');
preload_image('/ui/base/pf2.png');
preload_image('/ui/base/pf3.png');
preload_image('/ui/base/pf4.png');
preload_image('/ui/base/pf5.png');
preload_image('/ui/base/pf6.png');
preload_image('/ui/base/pf7.png');
preload_image('/ui/base/pf8.png');

