// JavaScript Document
function jsModelBasic(param,w,h)
{
	//$('#basicModalContent').modal();
	//$.modal(document.getElementById('basicModalContent'));
	$.modal(param);

	// styling
	var elem = document.getElementById('modalContainer');
	//elem.style.left		= 50+'%';
	//elem.style.top		= 50+'%';
	elem.style.width 		= w + 'px';
	elem.style.minHeight	= h + 'px';
	elem.style.marginLeft	= -(w/2) + 'px';
	elem.style.marginTop	= -(h/2) + 'px';

/*	$.modal(param,{
					onOpen: myOpenFunction,
					onShow: myShowFunction,
					onClose: test
					});*/
}
function test()
{
	alert('test called');	
	return true;
}
