// JavaScript Document
function load(type){
	var target;
	var pg_w;
	var pg_h;
	
	if(navigator.appName == "Microsoft Internet Explorer"){
		pg_w = 372;
		
		switch(type){
			case 'self':
				page = 'contact/';
				pg_h = 589;
				break;	
			case 'refer':
				page = '/refer/';
				pg_h = 724;
				break;
			case 'business':
				page = 'contact/';
				pg_h = 647;
				break;
			default:
				break;
		}
	}else{
		pg_w = 356;
		
		switch(type){
			case 'self':
				page = 'contact/';
				pg_h = 552;
				break;	
			case 'refer':
				page = '/refer/';
				pg_h = 680;
				break;
			case 'business':
				page = 'contact/';
				pg_h = 600;
				break;
			default:
				break;
		}
	}

	var load = window.open(page, '', 'scrollbars=yes, menubar=no, height=' + pg_h + ', width=' + pg_w + ', resizable=yes, toolbar=no, location=no, status=no');
}