// JavaScript Document
( function popup() {
	$( document ).ready( function() {
		$("a[rel='pop-up']").click(function () {
      		    var features = "height=600,width=450,scrollTo,resizable=1,scrollbars=1,location=0";
      		    newwindow=window.open(this.href, 'Popup', features);
      		    return false;
 		});
	} );
}() );

( function popup480x380() {
	$( document ).ready( function() {
		$("a[rel='pop-up480x380']").click(function () {
      		    var features = "height=400,width=480,scrollTo,resizable=1,scrollbars=0,location=0";
      		    newwindow=window.open(this.href, 'Popup', features);
      		    return false;
 		});
	} );
}() );
( function popup640x520() {
	$( document ).ready( function() {
		$("a[rel='pop-up640x520']").click(function () {
      		    var features = "height=520,width=640,scrollTo,resizable=1,scrollbars=0,location=0";
      		    newwindow=window.open(this.href, 'Popup', features);
      		    return false;
 		});
	} );
}() );