function picsLGallery(galleryID, galleryBgColor, galleryTitle){
	var scr_h, scr_w, centerT, centerL, scrollon, urlValue, bg, title;
	
	scr_h = 680;
	scr_w = 990;
	
	//Calculate Screen Information
	if( screen.width < 1024 || screen.height < 768) {
		scrollon = "yes";
	} 
	else {
		scrollon = "no";
	}
	
	if(scrollon == "no"){
		centerL = (screen.availWidth - 990)/2;
		centerT = (screen.availHeight - 680)/2;
	}else{
		centerL = 0;
		centerT = 0;
	}
	
			
	// Define Gallery Styling
	if(galleryBgColor == ''){
		bg = '000000';
	}else{
		bg = galleryBgColor;
	}
	if(galleryTitle == ''){
		title = 'Photo Gallery';
	}else{
		title = galleryTitle;
	}
	
	
	//Launch Application
	urlValue = "http://www.Pics-L-Gallery.com/PROD/main.cfm?ownerID=" + galleryID + "&condition=1&title=" + title + "&bgColor=" + bg;
	if(scrollon == "yes"){
		newWindow = window.open(urlValue,'Main','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+scr_w+',height='+scr_h+',screenX='+centerL+',screenY='+centerT+',top='+centerT+',left='+centerL);
	}
	else {
		newWindow = window.open(urlValue,'Main','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+scr_w+',height='+scr_h+',screenX='+centerL+',screenY='+centerT+',top='+centerT+',left='+centerL);
	}
	
	
	//Begin
	newWindow.focus();
	if(navigator.platform.indexOf("MacPPC")!=-1 && navigator.appName.indexOf('Microsoft')!=-1)
	{
		newWindow.resizeTo(scr_w,scr_h);
	}
	
}
