function OpenWin(url,siteName,width,height)
{
var  str = "width="+width+",height="+height+"directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=no";
var url = url;
window.open(url,siteName,str);
}