function internweb() 
{ 
	open("http://www.simplicity.se/se/internweb.html" , "opensmall" , "toolbar=no,width=920,height=670"); 
} 

function openWindow(url, name, width, height)
{
	name = typeof(name) != 'undefined' ? name : 'window';
	width = typeof(width) != 'undefined' ? width : '540';
	height = typeof(height) != 'undefined' ? height : '400';
	if (url) {
		window.open(url, name, "toolbar=no, width=" + width + ", height=" + height);
	}
}