 
 
 function video()
{
		jQuery("#ShawBox").show()

	var maskHeight = jQuery(document).height();
	var maskWidth = jQuery(window).width();
	var containerWidth = jQuery('#ShawContainer').width();	

	
	jQuery('#mask').css({'width':maskWidth,'height':maskHeight,backgroundColor:"#000000",'opacity':0.80});
	jQuery('#ShawContainer').css({'margin-left':maskWidth/2-containerWidth/2-20});
	jQuery("#mask").show()


 }
 
 function closeshaw()
{
	jQuery('#mask').hide();
	jQuery('#ShawBox').hide();
 }
 
 

