
<!--
/*
CSSとクラス名
alert.css
	alert
alert_lite.css
	alert_lite
alphacube.css
	alphacube
darkX.css
	darkX
default.css
	dialog
lighting.css
	bluelighting
	greylighting
	greenlighting
	darkbluelighting
mac_os_x.css
	mac_os_x
	blur_os_x
mac_os_x_dialog.css
	mac_os_x_dialog
nuncio.css
	nuncio
spread.css
	spread
*/
function openSample(className,width,height,url) {
	var win = new Window('sample'+url, {
		className:			className,
		blurClassName:		null,
		minWidth:			100, 
		minHeight:			20,
		resizable:			true,
		closable:			true,
		minimizable:		true,
		maximizable:		true,
		draggable:			true,
		userData:			null,
		showEffect:			Element.show,
		hideEffect:			Element.hide,
		showEffectOptions:	{},
		hideEffectOptions:	{},
		effectOptions:		null,
		parent:				document.body,
		title:				'',
		onload:				Prototype.emptyFunction,
		width:				width,
		height:				height,
		opacity:			1,
		recenterAuto:		false,
		wiredDrag:			false,
		closeCallback:		null,
		destroyOnClose:		true,
		gridX:				1, 
		gridY:				1,
		top:				0,
		left:				0,
		url:				url
	});
	win.showCenter(true);
}
//-->
