// JavaScript Document

function legalWindow(url){
	window.open(url,'legal','resizable=0, scrollbars=1, status=0, menubar=0, toolbar=0, height=400, width=620, top=20, left=20');	
}

function openSmallWindow(url){
	window.open(url,'smallWind','resizable=1, scrollbars=1, status=0, menubar=0, toolbar=0, height=500, width=780, top=20, left=20');	
}
