function View(winname,theURL,top,left,width,height)
{
        msgWindow = window.open(theURL,winname,'menubar=no,scrollbars=yes,toolbar=no,location=no,titlebar=no,resizable=no,status=no,screenX=0,top='+top+',screenY=0,left='+left+',width='+width+',height='+height+'');

        if (msgWindow.opener == null)
                msgWindow.opener = self;

}

function selfclose() {
        opener.focus();
        window.close();
}

function goAuditForm(ind){
   var wnd = '';
   var link = "/audit/form.phtml?time="+ind;
   args='top=0, left=0, screenX=0, screeny=0, width=700, height=550, scrollbars=yes, resizable=yes';
   wnd = window.open(link, "AuditForm", args);
   wnd.opener=self;
   wnd.focus();
}//end-func-goUrl

function goDonationForm(lang,sid){
   var wnd = '';
   var link = '/donation.phtml?lang=' + lang;
   if(sid!=0) link = link + '&sponsor_id=' + sid;
   args='top=0, left=0, screenX=20, screeny=20, width=768, height=550, scrollbars=yes, resizable=yes';
   wnd = window.open(link, "DonationForm", args);
   wnd.opener=self;
   wnd.focus();
}//end-func-goUrl

function goVAForm(cat){
   var wnd = '';
   var link = "/VAForms/"+cat+"/page1/";
   args='top=0, left=0, screenX=0, screeny=0, width=700, height=550, scrollbars=yes, resizable=yes';
   wnd = window.open(link, "VA Forms", args);
   wnd.opener=self;
   wnd.focus();
}//end-func-goUrl

/*
function viewAudition(str,lang) {
	View('','http://www.hkyaf.com/'+str+'/index_'+lang.'.phtml',50,50,800,650);
}
*/
