$(document).ready(function() {
	$('#popUpBtn').click(function(){
		$('#footer').before('<div id="popup" style="background-color:gray;" class="window"><input style="margin-right:5px;float:right;" type="button" value="Close it" class="close"/><script type="text/javascript" src="http://wms.tkcarsites.com/PowerIndexedVideo/videoplayer/swfobject2.js"></script><script type="text/javascript">swfobject.registerObject("VideoDetailPlayer", "9.0.0", "http://wms.tkcarsites.com/PowerIndexedVideo/videoplayer/expressInstall.swf");</script><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="JWflash_VideoPlayer" width="667" height="500"><param name="movie" value="http://wms.tkcarsites.com/PowerIndexedVideo/videoplayer/player.swf" /><param name="wmode" value="transparent" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value="file=http://wms.tkcarsites.com/PowerIndexedVideo/Videos/240/burnsville-toyota-web-tutorial.flv&image=http://wms.tkcarsites.com/PowerIndexedVideo/Videos/240/burnsville-toyota-web-tutorial.jpg&skin=http://wms.tkcarsites.com/PowerIndexedVideo/videoplayer/tkcarsites/tkcarsites.xml&autostart=false&logo.hide=false&logo.position=bottom-right&plugins=hd-1&hd.file=http://wms.tkcarsites.com/PowerIndexedVideo/HDVideos/240/burnsville-toyota-web-tutorial.flv&logo=http://wms.tkcarsites.com/images/tkLogo.png" /><!--[if !IE]>--><object type="application/x-shockwave-flash"  data="http://wms.tkcarsites.com/PowerIndexedVideo/videoplayer/player.swf" width="667" height="500"><param name="wmode" value="transparent" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value="file=http://wms.tkcarsites.com/PowerIndexedVideo/Videos/240/burnsville-toyota-web-tutorial.flv&image=http://wms.tkcarsites.com/PowerIndexedVideo/Videos/240/burnsville-toyota-web-tutorial.jpg&skin=http://wms.tkcarsites.com/PowerIndexedVideo/videoplayer/tkcarsites/tkcarsites.xml&autostart=false&logo.hide=false&logo.position=bottom-right&plugins=hd-1&hd.file=http://wms.tkcarsites.com/PowerIndexedVideo/HDVideos/240/burnsville-toyota-web-tutorial.flv&logo=http://wms.tkcarsites.com/images/tkLogo.png" /><!--<![endif]--><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player"/></a><!--[if !IE]>--></object><!--<![endif]--></object></div>');

		$('#popup').css({'position':'absolute','left':'0','top':'-30px','display' : 'none', 'width' : '667','height':'500','z-index':'999','padding':'0px','border':'5px solid #ccc'});
		$('#popup').click(function(e) {
			//Get the A tag
			var id = "#popup"
			//Get the screen height and width
			var maskHeight = $(document).height();
			var maskWidth = $(window).width();
			//Get the window height and width
			var winH = $(window).height();
			var winW = $(window).width();
			//Set the popup window to center
			$(id).css('top',  winH/2-$(id).height()/2);
			$(id).css('left', winW/2-$(id).width()/2);
			//transition effect
			$(id).fadeIn(500); 
		});
		//if close button is clicked
		$('.window .close').click(function (e) {
			//Cancel the link behavior
			e.preventDefault();
			$('#mask').hide();
			$('.window').remove();
		});		
		$("#popup").trigger('click');
	});
});
