/*
if(!top.mainFrame){
	window.location = "http://bbs.mw35.com/main.asp?v=<%=server.urlencode(CurrentPath)%>";
}
*/
var flag=false; 
function DrawImage(ImgD,w){ 
var image=new Image(); 
 if(w=='')w=500;
 image.src=ImgD.src; 
 if(image.width>0 && image.height>0){ 
  flag=true; 
  if(image.width>=w){ 
   ImgD.width=w; 
   ImgD.height=(image.height*w)/image.width; 
  }else{ 
   ImgD.width=image.width; 
   ImgD.height=image.height; 
  }  
 } 
} 

function ctlent(eventobject){
	if(event.ctrlKey && window.event.keyCode==13){
		this.document.frmPost.submit();
	}
}
function postSubmit(){
	frmPost.action = "save.asp" ;
	frmPost.target = "_self";
	frmPost.submit();
}

function postPreview(){
	frmPost.action = "preview.asp" ;
	frmPost.target = "_blank";
	frmPost.submit();
}