﻿// JScript File


// Exempel:
// <a href="javascript:OpenWindow('../Pages/TellAFriend.aspx', 0, 400, 600);">Tipsa en vän</a>
function OpenWindow(strUrl, intScrollBars, intWidth, intHeight)
{
	window.open(strUrl,"mywindow","menubar=1,resizable=1,scrollbars=" + intScrollBars + ",width=" + intWidth + ",height=" + intHeight);
}