﻿// JScript File

function popupMisc(ID, height) { 
	window.open("Misc.aspx?ID=" + ID, "","fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=500,height=" + height + ",left=150,top=150"); 
	}	
function popupMe(ID, height) { 
	window.open("Bio.aspx?ID=" + ID, "","fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no,directories=no,location=no,width=600,height=" + height + ",left=150,top=150"); 
	}
function popupImage(Folder, Image) { 
	window.open("PopUp.aspx?Folder=" + Folder + "&Image=" + Image, "","fullscreen=no,titlebar=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=700,height=500,left=150,top=150"); 
	}
function popup640x480(Folder, Image) { 
	window.open("PopUp640x480.aspx?Folder=" + Folder + "&Image=" + Image, "","fullscreen=no,titlebar=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=700,height=600,left=150,top=150"); 
	}
function popup480x640(Folder, Image) { 
	window.open("PopUp480x640.aspx?Folder=" + Folder + "&Image=" + Image, "","fullscreen=no,titlebar=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=600,height=750,left=150,top=100"); 
	}
function popupSlideShow(url) { 
	//window.open(url, "","fullscreen=no,titlebar=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=680,height=550,left=150,top=150"); 
	
	var randomNumber=Math.floor(Math.random()*100000);
    var caption = "Slide Show";
    var url = ROOT_DIR + url + "?rn=" + randomNumber;
    GB_showCenter(caption, url, 520, 640);	
	}			
	
function greyBoxPopUp(title, url, width, height)
{
    var gbUrl = ROOT_DIR + url
    GB_showCenter(title, gbUrl, height, width);	
}