//M4V Pop Up 320x240
function popup01(movieSelect) {
	var generator=window.open('','name','width=340,height=290,status=1,scrollbars=none');
	 
	  generator.document.write('<html><head><title>Kelsey Kleiman</title>');
	  generator.document.write('</head><body style="overflow:hidden;background:#FFF;" align="center">');
	  generator.document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="260" width="320">');
	  generator.document.write('<param name="src" value="movs/'+movieSelect+'" />');
	  generator.document.write('<param name="autoplay" value="false" />');
	  generator.document.write('<param name="controller" value="true" />');
	  generator.document.write('<embed pluginspage="http://www.apple.com/quicktime/download/" src="movs/'+movieSelect+'" type="video/quicktime" height="260" width="320" controller="true" autoplay="false"></embed> ');
	  generator.document.write('</object>');
	  generator.document.write('</body></html>');
	  generator.document.close();
	}


//Vert Photo Pop Up
function popup02(imageSelect) {
	var generator=window.open('../images/'+imageSelect+'','name','width=400,height=524,status=0,scrollbars=0');
	}
	

//MOV Pop Up
function popup03(movieSelect) {
	var generator=window.open('','name','width=750,height=540,status=1,scrollbars=none');
	 
	  generator.document.write('<html><head><title>Kelsey Kleiman</title>');
	  generator.document.write('</head><body style="overflow:hidden;background:#FFF;" align="center">');
	  generator.document.write('<embed src="movs/'+movieSelect+'" width="720" height="502" scale="aspect"></embed>');
	  generator.document.write('</body></html>');
	  generator.document.close();
	}
	
//Movie PopUp
function popupMovie(movieSelect,h,w,filetype) {
	movH = h;
	movW = w;
	
	winH = h + 50;
	winW = w + 20;
	
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	
	var generator=window.open('movie.m4v.php?name=' + movieSelect + '&h=' + movH + '&w=' + movW + '&ft=' + filetype + '','popup','height=' + winH + ',width=' + winW + ',scrollbars=no,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=yes,left=' + LeftPosition + ',top=' + TopPosition + '');
	}