// $cmignore
function popUp(winURL) {
  window.open(winURL,"popup","toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes");
}

$(document).ready(function() {
  	$("#tools a[href$='systems-and-specifications/index.jsp']").click(function() { popUp("/coatings/systems/"); return false;})
	});
$(document).ready(function() {
  	$("a[href$='/tools/spray-equipment-reference-guide/']").click(function() { popUp("http://www.sherwin.com/pro/paint_supply/painting_tool/sprayers/"); return false;})
	});
$(document).ready(function() {
  	$("#tools #content a[href$='/knowledge/'], #services #content a[href$='/knowledge/']").click(function() { popUp("/knowledge/"); return false;})
	});
$(document).ready(function() {
  	$("#sevices-landing a[href$='/contact/']").click(function() { popUp("/contact/?help-type=Sales%20Support"); return false;})
	});

$(document).ready(function() { 
	  $("body a[href$='.pdf']").removeAttr('target'); 
      $("body a[href$='.pdf']").click(function() { window.open($(this).attr('href'));return false;}) 
}); 

$(document).ready(function() {
  	$("#color a[href$='http://www.osha.gov/']").click(function() { window.open($(this).attr('href')); return false;})
	});
$(document).ready(function() {
  	$("#color a[href$='/products/loader.html']").click(function() { popUp('http://www.generalpolymers.com/products/loader.html'); return false;});
	});

// $/cmignore


