// JavaScript Document

$(document).ready(svLoader)

function svLoader()
{
	$('a.pop').click(popMe);
}

function popMe()
{ 
	popUp(this.href,'Large','800','550','yes'); 
	return false; 
}

function popUp(url,name,w,h,s) {
	var opts = 'toolbar=no,status=no,location=no,menubar=no,resizable=no,width='+w+',height='+h+',scrollbars='+s+'';
	var popupbox = window.open(url, name, opts);
	popupbox.focus();
}
