// JavaScript Document

		//shows the industry solutions videos in a modal window
		function showMovie(url,title){
			win = new Window({className: "sew", title: title, destroyOnClose: true, recenterAuto:false, resizable:false, draggable:true, minimizable:false, maximizable:false,wiredDrag:true, width:450, height:350}); 
			win.setURL(url);
			win.setZIndex(1000)
			win.showCenter(true);
		}
	
			//shows the industry solutions videos in a modal window
		function showPicture(url,title){
			win = new Window({className: "sew", title: title, destroyOnClose: true, recenterAuto:false, resizable:false, draggable:true, minimizable:false, maximizable:false,wiredDrag:true, width:450, height:350}); 
			win.setHTMLContent('<p><center><img src="'+url+'"></center></p>');
			win.setZIndex(1000);
			win.showCenter(true);
		}



