function openIcon(loc, width, height, scrol) {
	wnd = window.open(loc, null, 'menubar=no,top=0;left=0;toolbar=no,status=no,height='+screen.availHeight+',width='+screen.availWidth+',scrollbars='+scrol);
	wnd.focus();
}

imgpath = 'images/'

if (document.images)
{
	img = new Image();
	img.src = imgpath+'background.jpg';

	img1 = new Image();
	img1.src = imgpath+'menuitem_identity_active.gif';
	
	img2 = new Image();
	img2.src = imgpath+'menuitem_paper_active.gif';
	
	img2 = new Image();
	img2.src = imgpath+'menuitem_web_active.gif';
	
	img2 = new Image();
	img2.src = imgpath+'menuitem_contacts_active.gif';
	
	img2 = new Image();
	img2.src = imgpath+'menuitem_about_active.gif';
}


function hover(thisImg, imgName) {
	if (!document.images)
		return false;
	thisImg.src = imgpath + imgName;
}

