window.name = 'SGadi'

function sgVideo(ppvideo) {
	regwindow = window.open (ppvideo,'SGadiVideo','width=545,height=448,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no')
}

function sgVideoLive(ppvideo) {
	regwindow = window.open (ppvideo,'SGadiVideo','width=571,height=435,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no')
}

function sgAudio(ppaudio) {
	regwindow = window.open (ppaudio,'SGadiAudio','width=571,height=450,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no')
}

function sgImageGallery(ppimage) {
	regwindow = window.open (ppimage,'SGadiImageGallery','width=554,height=594,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no')
}

function sgShatabdi(ppimage) {
	regwindow = window.open (ppimage,'SGadiImageGallery','width=780,height=571,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no')
}

var winhandle = null;

function popUp(aURL, aWidth, aHeight) {
  if ((winhandle != null) && (! winhandle.closed)){

    winhandle.resizeTo(aWidth, aHeight);
    winhandle.location.replace(aURL);

  }
  else
  {
    winhandle=window.open(aURL, "imagewin", 'width=' + eval(aWidth) + ',height=' + eval(aHeight) + ',resizable,scrollbars');
  }

  winhandle.focus();

}