/*

<div id="id" class="internalframe" style="width: 400px;">
	<div class="heading">
		heading
	</div>

	<div class="close" onclick="dd.elements.aktuell.hide();"></div>

	<div class="content">
		content
	</div>
</div>

<!-- placed here at end for ie5 compatability .. cannot read document.body... before "drawn" -->
<script src="js/wz_dragdrop.js" type="text/javascript"></script>

<script type="text/javascript">
<!--


	var w = dd.getWndW();
	var h = dd.getWndH();

	SET_DHTML( CURSOR_MOVE, SCROLL, "id" );


	dd.elements.id.moveTo( w/2 - dd.elements.id.w/2 , h/2 - dd.elements.id.h/2);

-->
</script>

*/

div.internalframe {

	width: auto;

	position: absolute;

	border-color: black;
	border-style: solid;
	border-width: 2px;

}

div.internalframe div.heading {

	font-weight: bold;

	padding: 3px;

	background-color: #C5DDC3;

	border-bottom: black 2px solid;

}

div.internalframe div.content {

	padding: 3px;
	background-color: #EBF3EA;

}

div.internalframe div.close {

	position: absolute;

	right: 2px;
	top: 2px;

	cursor: pointer;

	width: 18px;
	height: 18px;

	background-image: url(../images/close.gif);
	background-position: top;
	background-repeat: no-repeat;

}

