function openShadowBox(width,height,loc){
	Shadowbox.open({
		content:    loc,
		player:     "iframe",
		title:      "",
		height:     height,
		width:      width
	});
}
function openShadowBoxParams(width,height,loc,params){
	Shadowbox.open({
		content:    loc+'?'+params,
		player:     "iframe",
		title:      "",
		height:     height,
		width:      width
	});
}
function openShadowImage(width,height,code){
	Shadowbox.open({
		content:    'resized_flat/'+code+'.jpg',
		player:     "img",
		title:      "",
		height:     height,
		width:      width
	});
}


