function initwp(cur_img)
{
	Saveit(cur_img,screen.width,screen.height);
}
function validate()
{
	if(frm.textTitle.value=="")
	{
		alert("請輸入標題!");
		frm.textTitle.focus();
		return false;
	}
	if(frm.textContent.value=="")
	{
		alert("請輸入內容!");
		frm.textContent.focus();
		return false;
	}
	return true;
}
function Saveit(img,w,h)
{
	var url='index.php?act=wp&img='+img+'&w='+w+"&h="+h;
	//temp.window.location.href=url;
	document.getElementById('wp').src=url;
	//setTimeout(function(){temp.document.execCommand("SaveAs",false,"");},100);
}
