function openpop(wname,wurl,wscroll,wresize,wwidth,wheight)
{
var otheropt="toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+wscroll+",resize="+wresize+",width="+wwidth+",height="+wheight;
var newwin=window.open(wurl,wname,otheropt);
newwin.focus();
}

function openpopwc(wname,wtitle,wscroll,wresize,wwidth,wheight,content)
{
var otheropt="toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+wscroll+",resize="+wresize+",width="+wwidth+",height="+wheight;
var newwin=window.open("",wname,otheropt);
newwin.document.write("<html><head><title>"+wtitle+"</title></head>");
newwin.document.write('<link rel="stylesheet" href="http://imgs.bharatmatrimony.com/styles/bmstyle.css">');
newwin.document.write("<body style='margin:0px'><div class='brownpopclr' style='height:100%'>");
newwin.document.write(content);
newwin.document.write("</div></body></html>");
newwin.document.close();
}
