function openPopup( strURL, strWindow, strOptions ) {
	if ( strURL.lastIndexOf( "http://" ) == -1 ) strURL = "../" + strURL;

	window.open( strURL, strWindow, strOptions );
}