//Default Status Bar Text
window.defaultStatus = " Welcome to susko.net "


function popup(ndx,albumid) {
	var opts = "menubar=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no,height=620,width=760";
      	url='http://www.fototime.com/ftweb/bin/ft.dll/detail?ndx='+ndx+'&amp;AlbumId='+albumid+'&amp;GroupId=';
      	
	//open main invite to log in visitor
	newWindow = window.open('http://www.fototime.com/inv/7D22D7BBA57E131', 'newWin','menubar=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no,height=10,width=500')
	
	//close main invite to open slideshow window
	

	//open slideshow
	window.open(url, 'Insturctor', opts);
      	return

      	//closer.focus();
      	//closer.location = url;

	newWindow.close()
	}

//New picutre popup script

function DetailWin(UserId, Ndx, AlbumId, GroupId) {
	WinHeight = 550;
	WinWidth  = 800;
	
	var ScreenHeight = window.screen.height;
	if (ScreenHeight > 600) WinHeight = 620;
    	if ((useragent.ismac) && (useragent.isie)) WinHeight = WinHeight + 40;

    	var URL = 'http://www.fototime.com/ftweb/bin/ft.dll/detail?userid=' + UserId + '&ndx=' + Ndx + '&slideshow=0&AlbumId=' +AlbumId + '&GroupId=' + GroupId  + '&screenheight=' + ScreenHeight;

    	var slideDlg = new Dialog(WinWidth,WinHeight, URL, "DetailWin");
	if (ScreenHeight < 600) slideDlg.scrollbars = true;
	var cururl = window.location.href.toUpperCase();
	if (cururl.indexOf("/PICTURES") <= 0) {
	  window.location = 'http://www.fototime.com/ftweb/bin/ft.dll/pictures?UsePopup=true';	
	}
    slideDlg.show();
  }
