function open_page(new_url) {
	return window.location.href = 'http://disneyshopping.go.com/cgi-bin/local_redirect.pl?'+new_url;
}

function open_page_close_popup(new_url) {
	open_page(new_url);
	return self.close();
}

$(document).ready(function() {
$.ajax({
  url: "gstSvcsNav.html",
  cache: false,
  success: function(html){
    $("#gstSvcsNav").append(html);
  }
});
});


