/*
 * SYSTEM BUILDER Page Opener
 * 
 * Copyright © 2010 ALPINE ELECTRONICS MARKETING, INC. ALL RIGHTS RESERVED.
 * 
 * the anchor elements which have a class "_gosb" are added the "click" event.
 */
try {
	jQuery(function () {
		$("a._gosb").each(
			function () {
				var href = $(this).attr("href");
				$(this).bind("click", function (ev) {
					var w = window.open(href, "systembuilder","height=660,width=920,resizable=no,scrollbars=no,directories=no,location=yes,menubar=no,status=no,toolbar=no");
					w.focus();
					ev.preventDefault();
				});
			}
		);
	});
}
catch (e) {}
