<!--
function jsPopUp(name,id,id2,attr3) {
	windowName =  name;
	windowLeft = 100;
	windowTop=100;

	switch (windowName) {
		case 'preview':	// preview
			if ( id2 != '' ) {
				windowWidth = id2.substring(0,id2.indexOf('x'));
				windowHeight = id2.substring(id2.indexOf('x')+1,id2.length);
			} else {
				windowWidth = 300;
				windowHeight = 400;	
			}
			windowScrollbars = 0;
			windowURL = attr3 + "preview.htm?src=" + id + "&w=" + windowWidth + "&h=" + windowHeight;
			break;
	}

	windowProps = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + windowScrollbars + ",resizable=0,copyhistory=0,width=" + windowWidth + ",height=" + windowHeight + ",left=" + windowLeft + ",top=" + windowTop;
	window.open(windowURL,windowName,windowProps);				
} // end function

function js_load_flash(str_id, str_src, str_width, str_height) {
	var arr_flashvars = {};
	var arr_params = {wmode:"transparent",quality:"high"};
	var arr_attributes = {};
	swfobject.embedSWF(str_src, str_id, str_width, str_height, "9.0.0", false, arr_flashvars, arr_params, arr_attributes);
	return true;
} // end function
-->