<!--
function openPopup(file_name) {
	//here we have to include the file that is used to upload image, select image and list image.
	//we can select and insert a image.
	//we can upload a new image into server.
	//we can select all available images.
	
	//InsertImage.jsp
	var inner_window_width=310;
	var inner_window_height=90;
	var shell_window_top=(window.screen.availHeight/2)-(inner_window_height/2);
	var shell_window_left=(window.screen.availWidth/2)-(inner_window_width/2);
		
	player = window.open('../videoplayer.asp?file='+file_name,'player','top='+shell_window_top+',left='+shell_window_left+',width=340, height=290,status=no, menubar=no, scrollbars=yes, copyhistory=no, resizable=no');

}
-->

