function popitup(url,height,width) {//hobbled popup
	window.open( url, "myWindow", "status = 1, height ="+height+", width = "+width+", resizable = 0, status=0, location=0" );
	return false;
}

function popitup_full(url,height,width) {//hobbled popup
	window.open( url, "myWindow", "status = 1, height ="+height+", width = "+width+", resizable = 1, status=1, location=0,toolbar=1, scrollbars=1,menubar=0" );
	return false;
}

function replacePng(path, width, height, target){
	var stringy = String("<DIV ID=\"oDiv\" STYLE=\" height:"+ height +"\; width:"+ width +"\; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader\(src=\'"+path +"\', sizingMethod=\'scale\'\)\;\" \>\<\/DIV\>   ");
	document.getElementById(target).innerHTML = stringy;
}