// JavaScript Document

$(document).ready(function() {                 
	$('a[@rel$="external"]').click(function(){this.target = "_blank";});
})

function popUp(URL) {
window.open(URL, "popup_id", "width=580,height=600,left=50,top=50,scrollbars=yes,menubar=yes, resizable=no,location=no,toolbar=no");
}

function PopupPic() {
 if (arguments[1] == null || arguments[1].length == 0 || arguments[2] == null || arguments[2].length == 0) {
  window.open( "popup.asp?" + arguments[0], "", "resizable=1,HEIGHT=200,WIDTH=200"); 
 }
 else {
  window.open( "popup.asp?" + arguments[0], "", "resizable=1,HEIGHT=" + arguments[2] + ",WIDTH=" + arguments[1] + ""); 
 }
} 



