/*
  This loads on any site giving it the ability to do a pop-up when the user clicks anywhere on it
  Fires on all links, paragraphs, lists, and images that are loaded on the page
*/


$(document).ready(function(){
	var alreadyPopped = false;
	$("a,p,span,li,img").click(function(){
		 if(!alreadyPopped && $(this).attr("target") != "_blank" && $(this).parent('a').attr("target") != "_blank")
		 {
		 	alreadyPopped = true;
//			window.open("http://www.vhmnetwork.com/trackingcode.php?aid=2689&linkid=N352&subid=",'win2','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1').blur();
			window.focus();
		 }
	});
});


	