/*
 * openWin(name, target, width, height, left, top, dependent)
 */
function openWin(wName, wTarget, wWidth, wHeight, wLeft, wTop, wDependent)
{
   var action = wTarget;
   wDependent = 'no';
   var options = "width=" + wWidth + ",height=" + wHeight + ",left=" + wLeft + ",top=" + wTop +",resizeable=yes,dependent=" + wDependent + ",scrollbars=yes";
   newwin = window.open(action, wName, options);
}
