// JavaScript Document
function OpenSlideshow(intID,intStyleSize,intControlType){
	var intWidth = 670;
	var intHeight = 540;
	var intControlHeight = 0;
	
	if(!intStyleSize){intStyleSize=1};
	if(!intControlType){intControlType=1};
	
	if(intControlType > 1){intControlHeight = 20;}
	if(intStyleSize==1){
		intHeight = 540;
	}
	if(intStyleSize==2){
		intHeight = 730;
	}
	if(intStyleSize==3){
		intHeight = 670;
		intWidth = 440;
	}
	if(intStyleSize==4){
		intHeight = 640;
		intWidth = 710;
	}
	intHeight = intHeight + intControlHeight;	
	window.open('/Slideshow.aspx?SlideshowID=' + intID,'ShowVideo','menubar=0,resizable=0,width=' + intWidth + ',height=' + intHeight + ',status=0,toolbar=0');	
}