$(document).ready(function() {
	var showDialogue = $.getQueryString({ ID:"kjheu" });
	if ( showDialogue == 'yy' && showpopup) {//p
		//Get the A tag
		var id = '#dialog';

		//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 height and width to mask to fill up the whole screen
		$('#mask').css({'width':maskWidth,'height':maskHeight});

		//Set the popup window to center
		$('#dialog').css('top',  winH/2-$(id).height()/2);
		$('#dialog').css('left', winW/2-$(id).width()/2);

		//transition effect
		$('#mask').fadeIn( 300, function() {
			$( 'select' ).hide();
			$( this ).fadeTo( 300, 0.5, function() {
				$('#dialog').fadeIn( 500 );//dialogue box
			} );
		});//background
	};
	
	
	//if close button is clicked
	$('#butViewContinue').click(function () {
		//Cancel the link behavior
		$('#mask, .window').hide();
		$( 'select' ).show();
	});	
	
	$('#butViewCart').click( function() {
		document.location = '/cart.php';
	} );
	$( '#butViewCheckout' ).click( function() {
		document.location = '/cart.php?xCmd=checkout';
	} );
	
	//if mask is clicked
	$('#mask').click(function () {
		$(this).hide();
		$('.window').hide();
		$( 'select' ).show();
	});			
});