var mapPosX = null;
var mapPosY = null;
var mapPosWidth = null;
var mapPosHeight = null;

function roundMap( idDivMap, si, sd, id, ii ) {
	if (document.all) {
		mapPosX = document.id( idDivMap ).getPosition()['x']-3;
		mapPosY = document.id( idDivMap ).getPosition()['y'];
		mapPosWidth = document.id( idDivMap ).getSize()['x'];
		mapPosHeight = document.id( idDivMap ).getSize()['y'];
		
	} else {
		mapPosX = document.id( idDivMap ).getPosition()['x'];
		mapPosY = document.id( idDivMap ).getPosition()['y'];
		mapPosWidth = document.id( idDivMap ).getSize()['x'];
		mapPosHeight = document.id( idDivMap ).getSize()['y'];
	}
	if (si) var si_ = new Element( 'img' , { 'id':'map_si', 'src': '/images/corners/si.gif', 'style' : 'z-index:9990;width:13px;position:absolute; top:0px; left:0px;' }).injectTop($(idDivMap));
	if (sd) var sd_ = new Element( 'img' , { 'id':'map_sd','src': '/images/corners/sd.gif', 'style' : 'z-index:9990;width:13px;position:absolute; top:0px; left:' + (mapPosWidth - 13) +'px;' }).injectTop($(idDivMap));
	if (id) {
		var id_ = new Element( 'img' , { 'id':'map_id','src': '/images/corners/id.gif', 'style' : 'z-index:9990;width:13px;position:absolute; top:' + (mapPosHeight - 13) +'px;; left:' + (mapPosWidth - 13) +'px;' }).injectTop($(idDivMap));
	} else {
		var id_ = new Element( 'img' , { 'id':'map_id','src': '/images/corners/id_sq.gif', 'style' : 'z-index:9990;width:13px;position:absolute; top:' + (mapPosHeight - 13) +'px;; left:' + (mapPosWidth - 13) +'px;' }).injectTop($(idDivMap));
	}
	if (ii) var ii_ = new Element( 'img' , { 'id':'map_ii','src': '/images/corners/ii.gif', 'style' : 'z-index:9990;width:13px;position:absolute; top:' + (mapPosHeight - 13) +'px; left:0px;' }).injectTop($(idDivMap));
	if (si || sd) var bs_ = new Element( 'img' , { 'bs':'map_bs','src': '/images/corners/bs.gif', 'style' : 'z-index:9990;height:13px;width:' + (mapPosWidth - 13*2) + 'px;position:absolute; top:0px; left:13px;' }).injectTop($(idDivMap));
	if (ii || id) var bi_ = new Element( 'img' , { 'bi':'map_bi','src': '/images/corners/bi.gif', 'style' : 'z-index:9990;height:13px;width:' + (mapPosWidth - 13*2) + 'px;position:absolute; top:' + (mapPosHeight - 13) +'px; left:13px;' }).injectTop($(idDivMap));
	if (si || ii) var bizq_ = new Element( 'img' , { 'bizq':'map_bizq','src': '/images/corners/bizq.gif', 'style' : 'z-index:9990;height:' + ( mapPosHeight -13*2 ) + 'px;width:13px;position:absolute; top:13px; left:0px;' }).injectTop($(idDivMap));
	if (sd || sd) var bder_ = new Element( 'img' , { 'bder':'map_bder','src': '/images/corners/bder.gif', 'style' : 'z-index:9990;height:' + ( mapPosHeight -13*2 ) + 'px;width:13px;position:absolute; top:13px; left:' + (mapPosWidth - 13) + 'px;' }).injectTop($(idDivMap));

}
