function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}






function serv_desc(mypage) {

// Define the size of your window in pixels with "width" and "height." 
mainwin = window.open("","remotewin","width=710,height=440,toolbar=yes,directories=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,left=30,top=30");

//toolbar=yes,directories=no,location=no,status=no,menubar=no

// Put the full url of your remote document where you see "URL".
mainwin.location.href = mypage;

    if (mainwin.opener == null) mainwin.opener = window; 
mainwin.opener.name = "opener";
}

function serv_desc_small(mypage) {

// Define the size of your window in pixels with "width" and "height." 
mainwin = window.open("","remotewin","width=350,height=440,toolbar=no,directories=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,left=30,top=30,screenX=30,screenY=30");

//toolbar=no,directories=no,location=no,status=no,menubar=no

// Put the full url of your remote document where you see "URL".
mainwin.location.href = mypage;

    if (mainwin.opener == null) mainwin.opener = window; 
mainwin.opener.name = "opener";
}