
<!--


//POP UP Windows


function Pop(page, height, width) {

	if (! height){
		height = 400;
	}
	if (! width){
		width = 400;
	}

	doc = open(page,'','toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,height=' + height + ',width=' + width);
	
	if (document.images){
		doc.focus();
	}
}


   // -->
