
function OpenLink(newURL)
{
  newWindow = window.open(newURL, 'SendLink', 'toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=570,height=450,');
  newWindow.focus();
}


function OpenLink2(newURL)
{
  newWindow = window.open(newURL, 'SendLink', 'toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=no,copyhistory=yes,width=768,height=513,');
  newWindow.focus();
}


function OpenLink3(newURL)
{
  newWindow = window.open(newURL, 'SendLink', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=500,height=125,');
  newWindow.focus();
}


function OpenLink4(newURL)
{
  newWindow = window.open(newURL, 'SendLink', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=608,height=500,');
  newWindow.focus();
}


function OpenLink5(newURL)
{
  newWindow = window.open(newURL, 'SendLink', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=500,height=500,');
  newWindow.focus();
}

function OpenLinkCustomized(newURL, newWidth, newHeight)
{
  //example: OpenLinkCustomized('index.html', 200, 100); will open index.html in new window with width 200 and height 100
  var newAttributes = "\'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width="+newWidth+",height="+newHeight+",\'";
  newWindow = window.open(newURL, 'SendLink', newAttributes);
  newWindow.focus();

}
function OpenLinkDemo(newURL)
{
  newWindow = window.open(newURL, 'SendLink', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=760,height=520,');
  newWindow.focus();
}
function OpenLinkVideo(newURL)
{
  newWindow = window.open(newURL, 'SendLink', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=700,height=400,');
  newWindow.focus();
}
function OpenLinkFromFlash(newURL)
{
  newWindow = window.open(newURL, 'SendLink', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=760,height=520,');
  newWindow.focus();
}