<!--

function openQTVRWindow_low() {
	props = new WindowProperties();
	props.location = js_home_url + "/extranet/portfolio/qtvr/index.php?res=1";
	props.width = 240;
	props.height = 280;
	props.name = 'qtvr_win_low';
	props.scrollbars = 'no';
	openNewWindow(props);
}
function openQTVRWindow_med() {
	props = new WindowProperties();
	props.location = js_home_url + "/extranet/portfolio/qtvr/index.php?res=2";
	props.width = 320;
	props.height = 340;
	props.name = 'qtvr_win_med';
	props.scrollbars = 'no';
	openNewWindow(props);
}
function openQTVRWindow_high() {
	props = new WindowProperties();
	props.location = js_home_url + "/extranet/portfolio/qtvr/index.php?res=3";
	props.width = 480;
	props.height = 460;
	props.name = 'qtvr_win_high';
	props.scrollbars = 'no';
	openNewWindow(props);
}

// -->