function ok(){
   var arr = showModalDialog("pop.htm",GetCheckBox(), "dialogWidth:23em; dialogHeight:25em; status:0;help:0");
   }
function GetCheckBox()
{
var strValue="";
try
{
for(iIndex=0;iIndex<document.all.length;iIndex++)
{
if(document.all(iIndex).type=="checkbox")
{
if(document.all(iIndex).checked==true)
{
strValue=strValue+document.all(iIndex).value+",";                             }
}
}
}
catch(e)
{}
         strValue=strValue.substr(0,strValue.length-1);
}