function OpenMessage(WSH,WSW,file,height,width)
{
	WindowScreenHieght=window.screen.height/2-WSH;
	WindowScreenWidth=window.screen.width/2-WSW;
	window.open (file, "SendMessageWindow", 'height='+height+', width='+width+', top='+WindowScreenHieght+', left='+WindowScreenWidth+', toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no');
}
