// JavaScript Document
function modal(type, title, url, width, height)
{
	if (!url.contains('?'))  {
		url = '/' + url + '?noCache=' + $time();
	} else {
		url = '/' + url + '&noCache=' + $time();
	}
	
	Shadowbox.open({
		player:     'iframe',
		title:		title,
		content:    url,
		height:     width,
		width:      height
	});
};